Skip to content

Commit ff4c12f

Browse files
Update conversation/go/sdk/conversation/conversation.go
Co-authored-by: Alice Gibbons <alicejgibbons@gmail.com> Signed-off-by: Filinto Duran <1373693+filintod@users.noreply.github.com>
1 parent 20da058 commit ff4c12f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conversation/go/sdk/conversation/conversation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func main() {
141141

142142
fmt.Println("Output response:", resp.Outputs[0].Choices[0].Message.Content)
143143
for _, toolCalls := range resp.Outputs[0].Choices[0].Message.ToolCalls {
144-
fmt.Printf("Tool Call - Name: %s - Arguments: %v\n", toolCalls.ToolTypes.Name, toolCalls.ToolTypes.Arguments)
144+
fmt.Printf("Tool Call: Name: %s, Arguments: %v\n", toolCalls.ToolTypes.Name, toolCalls.ToolTypes.Arguments)
145145

146146
// parse the arguments and execute tool
147147
args := []byte(toolCalls.ToolTypes.Arguments)

0 commit comments

Comments
 (0)