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
|
// Copyright 2026 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package aflow
import (
"errors"
"testing"
"google.golang.org/genai"
)
func TestToolErrors(t *testing.T) {
type flowOutputs struct {
Reply string
}
type toolArgs struct {
CallError bool `jsonschema:"call error"`
}
testFlow[struct{}, flowOutputs](t, nil,
"tool faulty failed: error: hard error\nargs: map[CallError:false]",
&LLMAgent{
Name: "smarty",
Model: "model",
Reply: "Reply",
TaskType: FormalReasoningTask,
Instruction: "Do something!",
Prompt: "Prompt",
Tools: []Tool{
NewFuncTool("faulty", func(ctx *Context, state struct{}, args toolArgs) (struct{}, error) {
if args.CallError {
return struct{}{}, BadCallError("you are wrong")
}
return struct{}{}, errors.New("hard error")
}, "tool 1 description"),
},
},
[]any{
&genai.Part{
FunctionCall: &genai.FunctionCall{
ID: "id0",
Name: "faulty",
Args: map[string]any{
"CallError": true,
},
},
},
&genai.Part{
FunctionCall: &genai.FunctionCall{
ID: "id0",
Name: "faulty",
Args: map[string]any{
"CallError": false,
},
},
},
},
nil,
)
}
|