fix(timeouts): increased timeouts for function execution & agent (#2256)

This commit is contained in:
Waleed
2025-12-08 16:25:58 -08:00
committed by GitHub
parent 99e0b81233
commit 87084edbe6
4 changed files with 4 additions and 18 deletions

View File

@@ -158,8 +158,8 @@ export const HTTP = {
export const AGENT = {
DEFAULT_MODEL: 'claude-sonnet-4-5',
DEFAULT_FUNCTION_TIMEOUT: 5000,
REQUEST_TIMEOUT: 120000,
DEFAULT_FUNCTION_TIMEOUT: 600000, // 10 minutes for custom tool code execution
REQUEST_TIMEOUT: 600000, // 10 minutes for LLM API requests
CUSTOM_TOOL_PREFIX: 'custom_',
} as const