There was an error processing your request: An error occurred. what is this error massage i try to set openrouter.ai DeepSeek V2.5 Model
open router is causing api errors randomly, did you do a retry and still see its not workin?
1 Like
I have this myself often with openrouter and this model specific, as well.
There is normally an error in console/terminal which saying that I cant find an provider or something like this.
With Qwen it didnt haven these problems (also on OpenRouter):
1 Like
I’m encountering the same issue as well; I’m currently experiencing the same problem with the ChatGPT Plus API.
What is your prompt?
What Tier you are in openai? I think you need at least Tier 1
- Tier 0 (free) does not include GPT-4o according to their docs
What branch of bolt you are on?
Edit:
Test also please without, just with curl or something like this to make sure, your API key works.
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_OPENAI_API_KEY" \
-d '{
"model": "gpt-4",
"max_tokens": 150,
"temperature": 0.7,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Can you help me with a math problem?"
}
]
}'