| 1042 | } |
| 1043 | |
| 1044 | static td::Status process_stream_options(Ctx &ctx) { |
| 1045 | TRY_STATUS(ctx.process_obj_field("include_obfuscation", false, process_boolean)); |
| 1046 | TRY_STATUS(ctx.process_obj_field("include_usage", false, process_boolean)); |
| 1047 | return td::Status::OK(); |
| 1048 | } |
| 1049 | |
| 1050 | static td::Status process_chat_template_kwargs(Ctx &ctx) { |
| 1051 | TRY_STATUS(ctx.process_obj_field("enable_thinking", false, process_boolean)); |
nothing calls this directly
no test coverage detected