13 lines
235 B
Go
Raw Normal View History

2023-06-04 22:54:54 +08:00
package remote_http
import (
"ai-gateway/common/dto"
2023-06-04 23:26:48 +08:00
"code.mylomen.com/syj/lib/context"
2023-06-04 22:54:54 +08:00
)
type aiApi interface {
Completions(ctx context.GormWithZap, prompt, groupId string) (*dto.AiRes, error)
}
var AiApi aiApi = new(aiApiImpl)