update timeout to 300

This commit is contained in:
liangxinbing 2025-03-12 20:09:23 +08:00
parent af8023de43
commit e6e31a2c13

View File

@ -185,7 +185,7 @@ class LLM:
self,
messages: List[Union[dict, Message]],
system_msgs: Optional[List[Union[dict, Message]]] = None,
timeout: int = 60,
timeout: int = 300,
tools: Optional[List[dict]] = None,
tool_choice: Literal["none", "auto", "required"] = "auto",
temperature: Optional[float] = None,