| 24 | ) |
| 25 | |
| 26 | type MistralModelProvider struct { |
| 27 | client *mistral.MistralClient |
| 28 | modelName string |
| 29 | secretKey string |
| 30 | } |
| 31 | |
| 32 | func NewMistralProvider(apiKey, modelName string) (*MistralModelProvider, error) { |
| 33 | client := mistral.NewMistralClientDefault(apiKey) |
nothing calls this directly
no outgoing calls
no test coverage detected