yao/neo/types.go
2023-04-30 14:21:45 +08:00

36 lines
1.3 KiB
Go

package neo
import "github.com/yaoapp/yao/aigc"
// DSL AI assistant
type DSL struct {
ID string `json:"-" yaml:"-"`
Name string `json:"name,omitempty"`
Guard string `json:"guard,omitempty"`
Connector string `json:"connector"`
ConversationSetting ConversationSetting `json:"conversation"`
Option map[string]interface{} `json:"option"`
Prompts []aigc.Prompt `json:"prompts,omitempty"`
Allows []string `json:"allows,omitempty"`
AI aigc.AI `json:"-" yaml:"-"`
Conversation Conversation `json:"-" yaml:"-"`
Command Command `json:"-" yaml:"-"`
}
// ConversationSetting the conversation config
type ConversationSetting struct {
Connector string `json:"connector,omitempty"`
Table string `json:"table,omitempty"`
MaxSize int `json:"max_size,omitempty"`
}
// Conversation the store interface
type Conversation interface {
GetHistory(sid string) ([]map[string]interface{}, error)
SaveHistory(sid string, messages []map[string]interface{}) error
}
// Command the command interface
type Command interface {
Match(messages []map[string]interface{}) (bool, error)
}