-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool.go
131 lines (118 loc) · 2.91 KB
/
tool.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
Copyright 2025 rizome labs llc, hi@rizome.dev
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package flow
import (
"github.com/google/generative-ai-go/genai"
"github.com/openai/openai-go"
)
type (
Tool struct {
Name string
Description string
Parameters []*Parameter
}
Parameter struct {
Name string
Description string
Type string
}
// Used as parameter for tool calls; covers ~95% of use cases
// If it doesn't; let us know:
// github.com/rizome-dev/flow/issues
Config struct {
LastMessage *Message
Messages []*Message
}
Message struct {
Name string
Role string
Content string
}
)
func (c *Config) AddLastMessage(msg *Message) error {
c.LastMessage = msg
c.Messages = append(c.Messages, msg)
return nil
}
func MarshalTool(func(*Config) error) *Tool {
return &Tool{}
}
// Pass the function's name, description & parameters
// params should be formatted as map[parameterName]parameterType
func CreateTool(name, desc string, params []*Parameter) *Tool {
return &Tool{
name,
desc,
params,
}
}
func (t *Tool) MarshalOpenAIChatCompletionTool() *openai.ChatCompletionToolParam {
props := map[string]interface{}{}
for _, x := range t.Parameters {
props[x.Name] = map[string]string{
"type": x.Type,
}
}
params := openai.FunctionParameters{
"type": "object",
"properties": props,
"required": []string{},
}
return &openai.ChatCompletionToolParam{
Type: openai.F(openai.ChatCompletionToolTypeFunction),
Function: openai.F(openai.FunctionDefinitionParam{
Name: openai.String(t.Name),
Description: openai.String(t.Description),
Parameters: openai.F(params),
}),
}
}
func (t *Tool) MarshalGeminiChatCompletionTool() *genai.Tool {
var arr []string
for _, x := range t.Parameters {
arr = append(arr, x.Name)
}
p := &genai.Schema{
Type: genai.TypeObject,
Properties: map[string]*genai.Schema{},
Required: arr,
}
for _, x := range t.Parameters {
var t genai.Type
switch x.Type {
case "string":
t = genai.TypeString
case "number":
t = genai.TypeNumber
case "integer":
t = genai.TypeInteger
case "boolean":
t = genai.TypeBoolean
case "array":
t = genai.TypeArray
case "object":
t = genai.TypeObject
}
p.Properties[x.Name] = &genai.Schema{
Type: t,
Description: p.Description,
}
}
return &genai.Tool{
FunctionDeclarations: []*genai.FunctionDeclaration{{
t.Name,
t.Description,
p,
}},
}
}