7 lines
150 B
Go
7 lines
150 B
Go
package completion
|
|
|
|
import "context"
|
|
|
|
type CompletionProvider interface {
|
|
Complete(ctx context.Context, prompt string, schema any) (string, error)
|
|
}
|