Add testimonials

This commit is contained in:
Chandler Swift 2025-12-28 19:42:39 -06:00
parent 06e943d478
commit 40223a12b5
7 changed files with 318 additions and 101 deletions

View file

@ -3,5 +3,5 @@ package completion
import "context"
type CompletionProvider interface {
Complete(ctx context.Context, prompt string) (string, error)
Complete(ctx context.Context, prompt string, schema any) (string, error)
}