table_rag 超时时间改成300

This commit is contained in:
朱潮 2026-03-11 22:05:37 +08:00
parent e3c400f663
commit 8640f99674

View File

@ -149,7 +149,7 @@ def table_rag_retrieve(query: str) -> Dict[str, Any]:
"query": query,
}
response = requests.post(url, json=data, headers=headers, timeout=60)
response = requests.post(url, json=data, headers=headers, timeout=300)
if response.status_code != 200:
return {