-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_recorder_test.go
188 lines (177 loc) · 4.73 KB
/
example_recorder_test.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package fun_test
import (
"context"
"encoding/json"
"fmt"
"log"
"os"
"gitlab.com/tozd/go/fun"
)
func ExampleTextRecorder() {
if os.Getenv("ANTHROPIC_API_KEY") == "" || os.Getenv("OPENAI_API_KEY") == "" {
fmt.Println("skipped")
return
}
ctx := context.Background()
// We can define a tool implementation with another model.
tool := fun.Text[toolInput, float64]{
Provider: &fun.AnthropicTextProvider{
APIKey: os.Getenv("ANTHROPIC_API_KEY"),
Model: "claude-3-haiku-20240307",
},
InputJSONSchema: jsonSchemaNumbers,
OutputJSONSchema: jsonSchemaNumber,
Prompt: `Sum numbers together. Output only the number.`,
}
errE := tool.Init(ctx)
if errE != nil {
log.Fatalf("% -+#.1v\n", errE)
}
f := fun.Text[int, int]{
Provider: &fun.OpenAITextProvider{
APIKey: os.Getenv("OPENAI_API_KEY"),
Model: "gpt-4o-mini-2024-07-18",
MaxContextLength: 128_000,
MaxResponseLength: 16_384,
Seed: 42,
},
Prompt: `Sum numbers together. Output only the number.`,
Tools: map[string]fun.TextTooler{
"sum_numbers": &fun.TextTool[toolInput, float64]{
Description: "Sums numbers together.",
InputJSONSchema: jsonSchemaNumbers,
OutputJSONSchema: jsonSchemaNumber,
// Here we provide the tool implemented with another model.
Fun: tool.Unary(),
},
},
}
errE = f.Init(ctx)
if errE != nil {
log.Fatalf("% -+#.1v\n", errE)
}
// We use the recorder to make sure the tool has really been called.
ctx = fun.WithTextRecorder(ctx)
output, errE := f.Call(ctx, 38, 4)
if errE != nil {
log.Fatalf("% -+#.1v\n", errE)
}
fmt.Println(output)
calls := fun.GetTextRecorder(ctx).Calls()
// We change calls a bit for the example to be deterministic.
cleanCalls(calls)
callsJSON, err := json.MarshalIndent(calls, "", " ")
if err != nil {
log.Fatalf("%v\n", err)
}
fmt.Println(string(callsJSON))
// Output:
// 42
// [
// {
// "id": "id_1",
// "provider": {
// "type": "openai",
// "model": "gpt-4o-mini-2024-07-18",
// "maxContextLength": 128000,
// "maxResponseLength": 16384,
// "forceOutputJsonSchema": false,
// "seed": 42,
// "temperature": 0
// },
// "messages": [
// {
// "role": "system",
// "content": "Sum numbers together. Output only the number."
// },
// {
// "role": "user",
// "content": "[38,4]"
// },
// {
// "role": "tool_use",
// "content": "{\"numbers\":[38,4]}",
// "toolUseId": "call_1_2",
// "toolUseName": "sum_numbers"
// },
// {
// "role": "tool_result",
// "content": "42",
// "toolUseId": "call_1_2",
// "toolDuration": 100004.000,
// "toolCalls": [
// {
// "id": "id_2",
// "provider": {
// "type": "anthropic",
// "model": "claude-3-haiku-20240307",
// "maxContextLength": 200000,
// "maxResponseLength": 4096,
// "promptCaching": false,
// "temperature": 0
// },
// "messages": [
// {
// "role": "system",
// "content": "Sum numbers together. Output only the number."
// },
// {
// "role": "user",
// "content": "{\"numbers\":[38,4]}"
// },
// {
// "role": "assistant",
// "content": "42"
// }
// ],
// "usedTokens": {
// "req_2_0": {
// "maxTotal": 200000,
// "maxResponse": 4096,
// "prompt": 24,
// "response": 5,
// "total": 29
// }
// },
// "usedTime": {
// "req_2_0": {
// "apiCall": 1.000
// }
// },
// "duration": 2.000
// }
// ]
// },
// {
// "role": "assistant",
// "content": "42"
// }
// ],
// "usedTokens": {
// "req_1_0": {
// "maxTotal": 128000,
// "maxResponse": 16384,
// "prompt": 57,
// "response": 16,
// "total": 73
// },
// "req_1_1": {
// "maxTotal": 128000,
// "maxResponse": 16384,
// "prompt": 82,
// "response": 2,
// "total": 84
// }
// },
// "usedTime": {
// "req_1_0": {
// "apiCall": 1.000
// },
// "req_1_1": {
// "apiCall": 2.000
// }
// },
// "duration": 1.000
// }
// ]
}