| 17 | } |
| 18 | |
| 19 | type localAIChatClient struct { |
| 20 | client *openai.Client |
| 21 | } |
| 22 | |
| 23 | func newLocalAIChatClient(baseURL string, apiKey string) *localAIChatClient { |
| 24 | cfg := openai.DefaultConfig(apiKey) |
nothing calls this directly
no outgoing calls
no test coverage detected