aboutsummaryrefslogtreecommitdiff
path: root/cmd/mimi/modules/discord/jufra/tools/tools.go
blob: 87a4cc19707e924c96e1150408f4553a108c9fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package tools

import (
	"context"

	"github.com/bwmarrin/discordgo"
	"within.website/x/web/ollama"
)

type Impl interface {
	Execute(ctx context.Context, sess *discordgo.Session, mc *discordgo.MessageCreate, conv []ollama.Message, tc ollama.ToolCall) error
	Describe() ollama.Function
}