(model string)
| 59 | } |
| 60 | |
| 61 | type LLMRequestOptions struct { |
| 62 | AnthropicCacheEdits []CacheEdit `json:"anthropic_cache_edits,omitempty"` |
| 63 | MaxTokens int `json:"-"` |
| 64 | RequiredTool string `json:"-"` |
| 65 | DisableThinking bool `json:"-"` |
| 66 | Temperature *float64 `json:"-"` |
| 67 | } |
| 68 | |
| 69 | type CompleteOptions struct { |
| 70 | MaxTokens int |
| 71 | Tools []map[string]any |
| 72 | Temperature *float64 |
no outgoing calls
no test coverage detected