Options contains configuration options for LLM providers
| 6 | |
| 7 | // Options contains configuration options for LLM providers |
| 8 | type Options struct { |
| 9 | APIKey string |
| 10 | Endpoint string |
| 11 | Timeout time.Duration |
| 12 | MaxTokens int |
| 13 | Temperature float64 |
| 14 | } |
| 15 | |
| 16 | // Option is a functional option for configuring a Client |
| 17 | type Option func(*Options) |
nothing calls this directly
no outgoing calls
no test coverage detected