-
|
@WitMiao feels like my config broke, it still stuck using Gemini, but I pretty much forced the whole router to use only GLM, so I am not sure what is happening for If I delete the lines for Gemini and Claude in "models", and then Gemini is like ~10x more expensive than open weight models, so I kinda want an easy fix for this |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
After modifying the configuration, use |
Beta Was this translation helpful? Give feedback.
-
|
There is a chance that the ccr service may freeze. You can use the following commands to terminate it and then restart it. # windows
# 1. First, get the PID of the service on port 3456 like this
netstat -ano | findstr :3456
# Get the following content
# TCP 127.0.0.1:3456 0.0.0.0:0 LISTENING 1208
# TCP 127.0.0.1:59047 127.0.0.1:3456 TIME_WAIT 0
# 2. Then terminate it. 1208 is not a fixed value; it depends on the PID obtained from the previous command.
taskkill //PID 1208 //F
#mac/linux Execute the following command directly
lsof -t -i:3456 | xargs kill |
Beta Was this translation helpful? Give feedback.
There is a chance that the ccr service may freeze. You can use the following commands to terminate it and then restart it.