fabric/common/vendor.go

13 lines
276 B
Go
Raw Normal View History

2024-08-16 19:43:27 +00:00
package common
type Vendor interface {
GetName() string
IsConfigured() bool
Configure() error
ListModels() ([]string, error)
SendStream([]*Message, *ChatOptions, chan string) error
Send([]*Message, *ChatOptions) (string, error)
GetSettings() Settings
Setup() error
}