continue_conversation
Extend ongoing code analysis conversations by providing session ID and follow-up message. Enable inclusion of code snippets for detailed responses. Integrates Claude Code and Google's Gemini AI for comprehensive debugging and long-trace analysis.
Instructions
Continue an ongoing analysis conversation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_code_snippets | No | Whether to include code snippets in response | |
message | Yes | Claude's response or follow-up question | |
session_id | Yes | ID of the conversation session |
Input Schema (JSON Schema)
{
"properties": {
"include_code_snippets": {
"description": "Whether to include code snippets in response",
"type": "boolean"
},
"message": {
"description": "Claude's response or follow-up question",
"type": "string"
},
"session_id": {
"description": "ID of the conversation session",
"type": "string"
}
},
"required": [
"session_id",
"message"
],
"type": "object"
}