mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-07-06 03:57:05 +00:00
10 lines
120 B
Go
10 lines
120 B
Go
package ai
|
|
|
|
type LocalAIClient struct {
|
|
OpenAIClient
|
|
}
|
|
|
|
func (a *LocalAIClient) GetName() string {
|
|
return "localai"
|
|
}
|