shaoyongjun a50de57320 to:sync
2024-05-22 17:39:32 +08:00

14 lines
249 B
Go

package remote_http
import (
"ai-gateway/common/dto"
"context"
)
type aiApi interface {
Completions(ctx context.Context, prompt, groupId string) (*dto.AiRes, error)
}
var AiApi aiApi = new(aiApiImpl)
var AiOpenRouter aiApi = new(aiRouterImpl)