This commit is contained in:
Ettore Di Giacinto
2024-04-01 00:17:16 +02:00
parent 3b1a54083d
commit eb4294bdbb
3 changed files with 69 additions and 22 deletions

View File

@@ -11,6 +11,10 @@ func NewIntention(s ...string) *IntentAction {
type IntentAction struct {
tools []string
}
type IntentResponse struct {
Tool string `json:"tool"`
Reasoning string `json:"reasoning"`
}
func (a *IntentAction) Run(ActionParams) (string, error) {
return "no-op", nil