Hello,
I'm new to this way to execute LLM agents. I'm used to have personnal paid plans like claude 20$ or github copilot in my company. I'm not smart, late with the AI community and trying to keep up 😄
I just discovered openrouter which sounds great. I'm trying it before putting $ into it, with its free models.
For example, I'm trying nemotron ultra using continue in VS Code. It worked well, wrote 5 files, but stopped at the 6th files. I ask it to execute create_new_file tool from continue, it keeps "thinking", it understands, but it does not execute the tool anymore.
I tried moving to inkling in the same context window, same issue.
Maybe I'm missing some configuration in continue ?
I checked the rate limite using postman, but it does not help :
{
"data": {
"label": "xxx",
"is_management_key":
false
,
"is_provisioning_key":
false
,
"limit":
null
,
"limit_reset":
null
,
"limit_remaining":
null
,
"include_byok_in_limit":
false
,
"usage": 0,
"usage_daily": 0,
"usage_weekly": 0,
"usage_monthly": 0,
"byok_usage": 0,
"byok_usage_daily": 0,
"byok_usage_weekly": 0,
"byok_usage_monthly": 0,
"is_free_tier":
true
,
"expires_at":
null
,
"creator_user_id": "xxx",
"rate_limit": {
"requests": -1,
"interval": "10s",
"note": "This field is deprecated and safe to ignore."
}
}
}
Here is my continue file
- name: "OpenRouter - NVIDIA Nemotron 3 Ultra (Gratuit) 1M"
provider: openrouter
model: nvidia/nemotron-3-ultra-550b-a55b:free
apiKey: <env>
roles: [chat, edit]
capabilities:
- tool_use
I'm wondering if continue is maybe not the best tool, but gemini keep telling me to use it, or roo code. I've had issue with roo when deploying gemma locally with ollama, it was not working.
What tools are you using to vibe code a project using tools like github copilot that is working with openrouter ?
Thank you