Error 500 (no body) on all requests #10434
Unanswered
hugomart-inria
asked this question in
Help
Replies: 1 comment
-
|
500 errors with no body are frustrating to debug! Here's a systematic approach: 1. Check server logs # Find Continue's server process
ps aux | grep continue
# Check its output
tail -f ~/.continue/logs/server.log2. Enable verbose logging // config.json
{
"logging": {
"level": "debug"
}
}3. Test the backend directly curl -X POST http://localhost:65432/health
curl -X POST http://localhost:65432/v1/completions \
-H "Content-Type: application/json" \
-d '{"prompt": "test"}' -v4. Common causes:
5. Isolate the issue # Test provider directly
curl https://api.openai.com/v1/models \
-H "Authorization: Bearer $OPENAI_API_KEY"6. Reset state # Clear Continue cache
rm -rf ~/.continue/cache
# Restart extensionWe've debugged these at RevolutionAI. Usually it's an auth or network issue. What provider are you using, and what triggers the 500? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I had a config.yaml working just fine with Chat Plan and Agent, but recently (a week ?), I have had this error on each prompt. I use a Qwen3-30B model. In the logs, there are messages about config.yaml not getting seen by the AST tracker. I tried going back to older version of Continue but it changed nothing. My API is accessible through other services.
Beta Was this translation helpful? Give feedback.
All reactions