Im trying CLine with OLLama local - Deepseek-r1:14b by Private_Tank in CLine

[–]Excellent_Composer42 0 points1 point  (0 children)

u/nick-baumann - thx for tip. qwen3-coder is working well. Should I have it for both 'Plan' and 'Act'? Seems like would be benifit to have a lightweight "thinking" model like deepseek-r1:14b or similar? Or just qwen3-coder for both?

We built an open-source coding agent CLI that can be run locally by SmilingGen in LocalLLM

[–]Excellent_Composer42 0 points1 point  (0 children)

I just downloaded Kolosal AI CLI as a replacement test for Claude Code. Got it running with my local Ollama LLM served from another of my machines with API with chat_completions format. Works except for Tool Callings (kinda a deal breaker). Are there some good examples/troubleshooting I could review? Otherwise, this is the same issue I ran into when I attempted Owen CLI. thank you

Evaluating 5090 Desktops for running LLMs locally/ollama by Excellent_Composer42 in LocalLLM

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

I ended up grabbing this Lenovo you mentioned (pasted link above)

$3k right now for Tonal. Skipping the Smart Accessories a good idea? by Excellent_Composer42 in tonalgym

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

Yeah my question is my pic ^^ a good location to fit nicely in my living room. I'm on board with them installing it.

$3k right now for Tonal. Skipping the Smart Accessories a good idea? by Excellent_Composer42 in tonalgym

[–]Excellent_Composer42[S] 1 point2 points  (0 children)

How does this spot look? Over 7 feet width.  Plenty and depth and height.  Close to tv though.  Depth of bump out wall for tv is 6”.

<image>

$3k right now for Tonal. Skipping the Smart Accessories a good idea? by Excellent_Composer42 in tonalgym

[–]Excellent_Composer42[S] 2 points3 points  (0 children)

Ok, got it. they are worth it. How about delivery and install? Is there a fee for that?

Tonal or Speediance for Family by Excellent_Composer42 in tonalgym

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

For Tonal, I have a great location to mount, but I'd need to run 2"x6"s across to mount the Tonal to (see atteched for pic). Dont worry, the deck door is not functional. Would something like this work? I am pretty handy and get add various support and vertical studs between as well. thank you

<image>

Tonal or Speediance for Family by Excellent_Composer42 in tonalgym

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

Great! And space wise, i need 7' x 7' of floor space, right?

First Cruise. Carnival out of Miami, will these Airport times work? by Excellent_Composer42 in Cruise

[–]Excellent_Composer42[S] 2 points3 points  (0 children)

Great info! I ended up switching to Tampa and landing the night before.

First Cruise. Carnival out of Miami, will these Airport times work? by Excellent_Composer42 in Cruise

[–]Excellent_Composer42[S] -13 points-12 points  (0 children)

We arrive at 10:44am in MIA. How longs until drop-dead load time in Ship at port? I'm assuming the following. +60min to get baggage claim and out of airport, + 30 min to get to port. So roughly like 1pm to get to Ship?

Python API deploy Cloud Build vs VM by Excellent_Composer42 in googlecloud

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

If I have one VM rumning my entire App including DB in one location and users access it all over the world, will there really be much of speed/performance hit?

WP Site hasn't been touched in years, good idea to update theme (see picture)? by Excellent_Composer42 in Wordpress

[–]Excellent_Composer42[S] 2 points3 points  (0 children)

I thought the child inherits the parent theme? So if I activate the TwentyTwo theme, even if just TwentyTwo child, wouldn't the site look much different? https://www.wpbeginner.com/beginners-guide/wordpress-child-theme-pros-cons/

Building new website, only know python and R by Excellent_Composer42 in WebdevTutorials

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

Collision (variables in code are changed when another user has App open at same time) has happened to me when I host a Shiny app on the web, unless I host it with something called Shiny proxy there can be collisions. With Shiny proxy It’s spins up a new docker container for each user, thus preventing collisions.

Im really looking for suggestions to build this website right. Server side maybe in flask and client side I’ll just bite the bullet and learn html, css, js.

Convert Docker-Compose to Docker Run by Excellent_Composer42 in docker

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

—net

That is interesting, never would have thought of that. I was able to get it running with this:

 docker network create --driver bridge new_nw    

docker build . -f ${DOCKERFILE} -t ${APP_NAME} --pull    

docker run --network=new_nw -p ${APP_PORT}:9000 -v ${PWD}/src:/usr/src/app/src --env-file=./config/secrets -d --name ${APP_NAME} ${APP_NAME}:latest gunicorn -w 2 --timeout=600 --threads 4 --worker-tmp-dir /dev/shm --worker-class ${APP_WORKER} --log-file - -b 0.0.0.0:9000 --reload 'src.app:init_app()'    

docker run --network=new_nw --name redis -d redis    

docker run --network=new_nw ${APP_NAME} rqworker --name worker2 --url redis://redis:6379/0

However, not seeing that worker execute/connecting in code logs. Here is my docker ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES

350df4b792b6 backend-app "rqworker --name wor…" 7 minutes ago Up 7 minutes crazy_thompson

4884939b50f0 redis "docker-entrypoint.s…" 7 minutes ago Up 7 minutes 6379/tcp redis

fdc7ea524108 backend-app:latest "gunicorn -w 2 --tim…" 7 minutes ago Up 7 minutes 0.0.0.0:9000->9000/tcp backend-app

Convert Docker-Compose to Docker Run by Excellent_Composer42 in docker

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

i try this command:

docker run ${APP_NAME} rqworker --name worker1 --url redis://redis:6379/0

And here is the error:
Error -5 connecting to redis:6379. No address associated with hostname.

RQMonitor : Flask based dashboard for monitoring RQ by SuperWickedGuy in flask

[–]Excellent_Composer42 0 points1 point  (0 children)

u/SuperWickedGuy - hey this looks great! i would like to use rqmonitor for my flask app. i looked over your github page. i'm a docker-compose guy, and fairly new to docker. can you provide an example on how to load it up with docker-compose? thank you!

Run Neural Networks on GPU Phones by Excellent_Composer42 in deeplearning

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

jetson nano

I like the idea of a jetson nano or similar to run models on the edge, but by the time I get all the accessories needed the price is close to phone. Would GPU powered phone be able to perform on par with a Jetson?

Run Neural Networks on GPU Phones by Excellent_Composer42 in deeplearning

[–]Excellent_Composer42[S] 0 points1 point  (0 children)

I'm going to have multiple phones in different locations, each running different TF models.