-
Notifications
You must be signed in to change notification settings - Fork 243
Closed
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Currently, framework does not support configuring timeouts for individual LLM calls. All LLM operations use the default timeout values from the underlying LLM client, which cannot be customised per request.
Add timeout option like this:
val llmOptions = LlmOptions(,
temperature = 0.5,
timeout = Duration.ofSeconds(60) // ❌ Not supported
)
Use Cases:
- Long-running analysis tasks that need extended timeouts
- Different timeout requirements for different LLM providers or models
- Preventing hung requests on unreliable network connections
johnsonr and HyunSangHan
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request