| 950 | } |
| 951 | |
| 952 | static td::Status process_function_tool_call(Ctx &ctx) { |
| 953 | TRY_STATUS(ctx.process_obj_field("id", true, process_string)); |
| 954 | TRY_STATUS(ctx.process_obj_field("function", true, process_function_call)); |
| 955 | return td::Status::OK(); |
| 956 | } |
| 957 | |
| 958 | static td::Status process_custom_tool_call(Ctx &ctx) { |
| 959 | TRY_STATUS(ctx.process_obj_field("id", true, process_string)); |
no test coverage detected