(id: string, name: string, args = '{}')
| 107 | } |
| 108 | |
| 109 | const toolCall = (id: string, name: string, args = '{}'): ToolCall => ({ |
| 110 | id, |
| 111 | type: 'function', |
| 112 | function: { name, arguments: args }, |
| 113 | }) |
| 114 | |
| 115 | /** Payload passed to the Nth `chat.completions.create` call. */ |
| 116 | const createPayload = (callIndex: number) => mockCreate.mock.calls[callIndex][0] |