This commit is contained in:
Chandler Swift 2025-12-17 23:27:59 -06:00
parent c62d126bdc
commit 9b80f6733d
4 changed files with 146 additions and 122 deletions

7
completion/provider.go Normal file
View file

@ -0,0 +1,7 @@
package completion
import "context"
type CompletionProvider interface {
Complete(ctx context.Context, prompt string) (string, error)
}