Timeout as Agents-SDK ``ModelSettings.extra_args`` (it has no ``timeout`` field), or ``None``. The LiteLLM provider forwards it to the completion call.
()
| 237 | |
| 238 | |
| 239 | def get_timeout_extra_args() -> dict[str, float] | None: |
| 240 | """Timeout as Agents-SDK ``ModelSettings.extra_args`` (it has no ``timeout`` |
| 241 | field), or ``None``. The LiteLLM provider forwards it to the completion call. |
| 242 | """ |
| 243 | return {"timeout": _runtime_timeout} if _runtime_timeout is not None else None |
| 244 | |
| 245 | |
| 246 | def load_config(config_path: Path) -> dict[str, Any]: |
no outgoing calls
no test coverage detected