Files
Radu Macocian (admac) bbf01ed041 Added llm client and ui
2026-06-10 15:59:13 +02:00

19 lines
400 B
Go

package config
import "encoding/json"
type Tool struct {
Type string `json:"type"`
Function FunctionDefinition `json:"function"`
}
type FunctionDefinition struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Parameters json.RawMessage `json:"parameters,omitempty"`
}
func AvailableTools() []Tool {
return []Tool{}
}