fix: Correct Ollama endpoint and BotVPS path

- Ollama: Use ollama-lw4s8g4gc8gss4gkc4gg0wk4 hostname instead of localhost
- BotVPS: Path is /app inside container
- Improve detect_git_repo_path to find correct paths
- Update planner prompt with correct context
This commit is contained in:
Marcos
2026-03-22 16:03:41 -03:00
parent 9b429f5505
commit bd0cbf8769
2 changed files with 49 additions and 37 deletions

View File

@@ -37,7 +37,7 @@ LLM_PROVIDERS = {
"ollama": {
"name": "Ollama (Local)",
"type": "local",
"endpoint": os.getenv("OLLAMA_HOST", "http://localhost:11434"),
"endpoint": os.getenv("OLLAMA_HOST", "http://ollama-lw4s8g4gc8gss4gkc4gg0wk4:11434"),
"models": None,
"default": "qwen2.5-coder:1.5b"
}