| 739 | typedef struct { |
| 740 | char *role; |
| 741 | char *content; |
| 742 | server_image_inputs images; |
| 743 | char *reasoning; |
| 744 | char *tool_call_id; |
| 745 | char **tool_call_ids; |
| 746 | int tool_call_ids_len; |
| 747 | int tool_call_ids_cap; |
| 748 | tool_calls calls; |
| 749 | } chat_msg; |
| 750 | |
| 751 | typedef struct { |
| 752 | chat_msg *v; |
| 753 | int len; |
| 754 | int cap; |
| 755 | } chat_msgs; |
| 756 |
no test coverage detected