| 944 | } |
| 945 | |
| 946 | static td::Status process_function_call(Ctx &ctx) { |
| 947 | TRY_STATUS(ctx.process_obj_field("arguments", true, process_string)); |
| 948 | TRY_STATUS(ctx.process_obj_field("name", true, process_string)); |
| 949 | return td::Status::OK(); |
| 950 | } |
| 951 | |
| 952 | static td::Status process_function_tool_call(Ctx &ctx) { |
| 953 | TRY_STATUS(ctx.process_obj_field("id", true, process_string)); |
nothing calls this directly
no test coverage detected