-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtool_test.log
More file actions
112 lines (112 loc) · 3.98 KB
/
tool_test.log
File metadata and controls
112 lines (112 loc) · 3.98 KB
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
2025-05-19 12:58:03,806 - INFO - Testing 8 predefined models
2025-05-19 12:58:03,806 - INFO - Testing 8 models in parallel
2025-05-19 12:58:03,807 - INFO - Testing model: llama3
2025-05-19 12:58:03,807 - INFO - Testing model: mistral
2025-05-19 12:58:03,807 - INFO - Making initial API call to llama3
2025-05-19 12:58:03,807 - INFO - Testing model: mistral:instruct
2025-05-19 12:58:03,807 - INFO - Making initial API call to mistral
2025-05-19 12:58:03,807 - INFO - Testing model: mistral-small3.1:latest
2025-05-19 12:58:03,808 - INFO - Making initial API call to mistral:instruct
2025-05-19 12:58:03,808 - INFO - Making initial API call to mistral-small3.1:latest
2025-05-19 12:58:03,835 - ERROR - HTTP error 404 from API: {"error":"model \"llama3\" not found, try pulling it first"}
2025-05-19 12:58:03,836 - INFO - Testing model: qwen2
2025-05-19 12:58:03,836 - INFO - Making initial API call to qwen2
2025-05-19 12:58:03,840 - ERROR - HTTP error 404 from API: {"error":"model \"qwen2\" not found, try pulling it first"}
2025-05-19 12:58:03,840 - INFO - Testing model: phi3
2025-05-19 12:58:03,840 - INFO - Making initial API call to phi3
2025-05-19 12:58:03,845 - ERROR - HTTP error 404 from API: {"error":"model \"phi3\" not found, try pulling it first"}
2025-05-19 12:58:03,846 - INFO - Testing model: llama3:70b
2025-05-19 12:58:03,846 - INFO - Making initial API call to llama3:70b
2025-05-19 12:58:03,849 - ERROR - HTTP error 404 from API: {"error":"model \"llama3:70b\" not found, try pulling it first"}
2025-05-19 12:58:03,849 - INFO - Testing model: llama3.1
2025-05-19 12:58:03,849 - INFO - Making initial API call to llama3.1
2025-05-19 12:58:03,852 - ERROR - HTTP error 404 from API: {"error":"model \"llama3.1\" not found, try pulling it first"}
2025-05-19 12:58:09,682 - INFO - Received response from mistral: {
"role": "assistant",
"content": "",
"tool_calls": [
{
"function": {
"name": "calculator",
"arguments": {
"a": 342,
"b": 15,
"operation": "multiply"
}
}
}
]
}
2025-05-19 12:58:09,683 - INFO - Model mistral requested tool calls: [
{
"function": {
"name": "calculator",
"arguments": {
"a": 342,
"b": 15,
"operation": "multiply"
}
}
}
]
2025-05-19 12:58:09,683 - INFO - Calculator called with: operation=multiply, a=342, b=15, expression=None
2025-05-19 12:58:09,683 - INFO - Calculator result: Result: 5130
2025-05-19 12:58:09,683 - ERROR - Error testing mistral: 'id'
2025-05-19 12:58:09,883 - INFO - Received response from mistral:instruct: {
"role": "assistant",
"content": "",
"tool_calls": [
{
"function": {
"name": "calculator",
"arguments": {
"a": 342,
"b": 15,
"operation": "multiply"
}
}
}
]
}
2025-05-19 12:58:09,883 - INFO - Model mistral:instruct requested tool calls: [
{
"function": {
"name": "calculator",
"arguments": {
"a": 342,
"b": 15,
"operation": "multiply"
}
}
}
]
2025-05-19 12:58:09,883 - INFO - Calculator called with: operation=multiply, a=342, b=15, expression=None
2025-05-19 12:58:09,883 - INFO - Calculator result: Result: 5130
2025-05-19 12:58:09,883 - ERROR - Error testing mistral:instruct: 'id'
2025-05-19 12:58:27,823 - INFO - Received response from mistral-small3.1:latest: {
"role": "assistant",
"content": "",
"tool_calls": [
{
"function": {
"name": "calculator",
"arguments": {
"expression": "342*15"
}
}
}
]
}
2025-05-19 12:58:27,823 - INFO - Model mistral-small3.1:latest requested tool calls: [
{
"function": {
"name": "calculator",
"arguments": {
"expression": "342*15"
}
}
}
]
2025-05-19 12:58:27,823 - INFO - Calculator called with: operation=None, a=None, b=None, expression=342*15
2025-05-19 12:58:27,823 - INFO - Calculator result: Result: 5130
2025-05-19 12:58:27,823 - ERROR - Error testing mistral-small3.1:latest: 'id'