( name: string, args: string, id: string, )
| 23 | } |
| 24 | |
| 25 | export function createDelta( |
| 26 | name: string, |
| 27 | args: string, |
| 28 | id: string, |
| 29 | ): ToolCallDelta { |
| 30 | return { |
| 31 | type: "function", |
| 32 | function: { |
| 33 | name, |
| 34 | arguments: args, |
| 35 | }, |
| 36 | id, |
| 37 | }; |
| 38 | } |
no outgoing calls
no test coverage detected