chat_with_reasoning
Generate responses with explicit reasoning steps to show how conclusions are reached, providing transparent and structured answers to complex questions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_tokens | No | ||
model | No | grok-3-mini | |
prompt | Yes | ||
reasoning_effort | No | ||
system_prompt | No | ||
temperature | No | ||
top_p | No |
Input Schema (JSON Schema)
{
"properties": {
"max_tokens": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Tokens"
},
"model": {
"default": "grok-3-mini",
"title": "Model",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
},
"reasoning_effort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Reasoning Effort"
},
"system_prompt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "System Prompt"
},
"temperature": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Temperature"
},
"top_p": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Top P"
}
},
"required": [
"prompt"
],
"type": "object"
}