(toolCallID string)
| 992 | if strings.TrimSpace(c.Model) != "" { |
| 993 | return c.Model |
| 994 | } |
| 995 | return "OpenAI-compatible" |
| 996 | } |
| 997 | |
| 998 | func CreateLLMClient( |
| 999 | apiKey string, |
| 1000 | baseURL string, |
| 1001 | model string, |
| 1002 | maxTokens int, |
| 1003 | thinkingBudgetTokens *int, |
no outgoing calls
no test coverage detected