9 lines
173 B
Go
9 lines
173 B
Go
package llm
|
|
|
|
import "context"
|
|
|
|
type Provider interface {
|
|
Name() string
|
|
GenerateReply(ctx context.Context, model string, systemPrompt, userPrompt string) (string, error)
|
|
}
|