(toolDefinitions)
| 1427 | } |
| 1428 | |
| 1429 | function buildResponseTools(toolDefinitions) { |
| 1430 | return toolDefinitions.map((tool) => ({ |
| 1431 | type: "function", |
| 1432 | name: tool.name, |
| 1433 | description: tool.description, |
| 1434 | parameters: tool.parameters, |
| 1435 | strict: false, |
| 1436 | })); |
| 1437 | } |
| 1438 | |
| 1439 | function buildAssistantMessageFromResponse(response) { |
| 1440 | const toolCalls = (response.output || []) |