finalize_conversation
End a conversation session and retrieve a tailored summary in formats like detailed, concise, or actionable, aiding in final code analysis and decision-making.
Instructions
Complete the conversation and get final analysis results
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ID of the conversation session | |
| summary_format | No | Format for the final summary |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"description": "ID of the conversation session",
"type": "string"
},
"summary_format": {
"description": "Format for the final summary",
"enum": [
"detailed",
"concise",
"actionable"
],
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}