generate_response
Generate AI-powered responses by integrating DeepSeek's structured reasoning with Claude 3.5 Sonnet’s advanced output creation. Enhances accuracy and context understanding for user prompts.
Instructions
Generate a response using DeepSeek's reasoning and Claude's response generation through OpenRouter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clearContext | No | Clear conversation history before this request | |
includeHistory | No | Include Cline conversation history for context | |
prompt | Yes | The user's input prompt | |
showReasoning | No | Whether to include reasoning in response |
Input Schema (JSON Schema)
{
"properties": {
"clearContext": {
"default": false,
"description": "Clear conversation history before this request",
"type": "boolean"
},
"includeHistory": {
"default": true,
"description": "Include Cline conversation history for context",
"type": "boolean"
},
"prompt": {
"description": "The user's input prompt",
"type": "string"
},
"showReasoning": {
"default": false,
"description": "Whether to include reasoning in response",
"type": "boolean"
}
},
"required": [
"prompt"
],
"type": "object"
}