mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-06-26 23:38:45 +00:00
12 lines
165 B
Go
12 lines
165 B
Go
package ai
|
|
|
|
const localAIClientName = "localai"
|
|
|
|
type LocalAIClient struct {
|
|
OpenAIClient
|
|
}
|
|
|
|
func (a *LocalAIClient) GetName() string {
|
|
return localAIClientName
|
|
}
|