-
Notifications
You must be signed in to change notification settings - Fork 757
Closed
Labels
Description
What Happened?
tool calls response from bedrock should be like
"tool_calls": [
{
"id": "toolu_01asdffAvgMRhMAD4Bnnt5W",
"type": "function",
"function": {
"name": "computer",
"arguments": "{\"action\":\"type\",\"coordinate\":[1, 2],\"text\":\"asda\",\"element\":\"asd\"}"
}
}
]
this is how they are currently
"tool_calls": [
{
"id": "toolu_018x5pj9sdasdd54w9ejke8fg",
"type": "function",
"function": {
"name": "computer",
"arguments": {
"action": "type",
"coordinate": [
1, 2
],
"text": "asd",
"element": "asd"
}
}
}
]