fix: increase LLM timeout 30s→60s, fix Gateway request format, add Ollama optimization guide

- Fixed Gateway: 'prompt' → 'message' field name
- Increased LLM provider timeout from 30s to 60s
- Added OLLAMA-OPTIMIZATION.md with performance tips
- DAARWIZZ now responds (slowly but works)
This commit is contained in:
Ivan Tytar
2025-11-15 17:46:35 +01:00
parent 36770c5c92
commit 03d3d6ecc4
3 changed files with 94 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ async def telegram_webhook(update: TelegramUpdate):
# Build request to Router with DAARWIZZ context
router_request = {
"prompt": text,
"message": text,
"mode": "chat",
"agent": "daarwizz", # DAARWIZZ agent identifier
"metadata": {
@@ -197,7 +197,7 @@ async def discord_webhook(message: DiscordMessage):
# Build request to Router with DAARWIZZ context
router_request = {
"prompt": text,
"message": text,
"mode": "chat",
"agent": "daarwizz",
"metadata": {