From c742f73dbd0c31a9cd24565388d55ae06ccc5d51 Mon Sep 17 00:00:00 2001 From: James <91065484+JamesACS@users.noreply.github.com> Date: Tue, 28 Oct 2025 10:57:58 +0100 Subject: [PATCH] Add chat_template_kwargs to openapi.yaml Added chat_template_kwargs to specify chat template arguments. --- openapi.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 5c0f9ba..15460b7 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -4314,6 +4314,13 @@ components: type: string description: The name of the moderation model used to validate tokens. Choose from the available moderation models found [here](https://docs.together.ai/docs/inference-models#moderation-models). example: 'safety_model_name' + chat_template_kwargs: + type: object + description: An object that allows you to pass arguments to the models chat template. + properties: + thinking: + description: Controls whether the model includes the tag wrapped reasoning process in the response. + type: boolean reasoning_effort: type: string enum: ['low', 'medium', 'high']