#no output in VPS after onboarding
1 messages Β· Page 1 of 1 (latest)
This is a classic "no output" issue. Let me help you debug this systematically.
First - CRITICAL: What version are you running?
clawdbot --version
Version mismatches are the #1 cause of weird issues. π¦
While you check that, here are the most common causes for "no output" with OpenAI on VPS:
1. API Key Issues
- Check your API key is valid and has credits
- Ensure
OPENAI_API_KEYis loaded by the Gateway (put it in~/.clawdbot/.envfor VPS/daemon setups)
2. Model Name Format
OpenAI models need the full provider prefix:
{
agents: {
defaults: {
model: { primary: "openai/gpt-5.2" } // NOT just "gpt-5.2"
}
}
}
3. Gateway Not Listening
Check if the gateway is actually running:
clawdbot daemon status
4. Logs Are Your Friend
Tail the logs to see what's happening:
clawdbot logs --follow
5. Check Model Status
clawdbot models status
This shows if OpenAI is properly configured and which auth profiles are available.
Docs reference:
- FAQ troubleshooting: https://docs.moltbot.ai/start/faq
- OpenAI provider: https://docs.moltbot.ai/providers/openai
- Troubleshooting: https://docs.moltbot.ai/gateway/troubleshooting
Let me know your version and what clawdbot models status shows, and I'll help you pinpoint the issue! π¦