chore: increase timeout for API requests in AIPlanner to 600 seconds and add local settings for Claude permissions

This commit is contained in:
kswdev0
2026-03-27 14:46:28 +09:00
parent 1b2688d1e1
commit c93785a809
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{
"permissions": {
"allow": [
"WebFetch(domain:github.com)"
]
}
}

View File

@@ -210,7 +210,7 @@ class AIPlanner:
resp = httpx.post(
f"{OLLAMA_HOST}/api/chat",
json=payload,
timeout=300.0,
timeout=600.0,
)
resp.raise_for_status()
data = resp.json()