div strong 🔨 In Development — This section is still being developed and may change. Get all available output modes for AI responses. Returns a list of supported output modes with descriptions and default flag. ## Output Modes - **text** - Rich text with markdown formatting (default) - **plain** - Plain text with all markdown formatting stripped - **blocks** - Structured blocks format with tool calls, results, and text ## Returns Returns an array of output mode objects with mode identifier, description, and default flag. ```bash cURL curl https://api.aitronos.com/v1/model/response/output-modes \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( "https://api.aitronos.com/v1/model/response/output-modes", headers={"X-API-Key": api_key} ) modes = response.json() ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const response = await fetch( 'https://api.aitronos.com/v1/model/response/output-modes', { headers: { 'X-API-Key': apiKey } } ); const modes = await response.json(); ``` ## Response ```json { "success": true, "output_modes": [ { "mode": "text", "description": "Rich text with markdown formatting (default)", "is_default": true }, { "mode": "plain", "description": "Plain text with all markdown formatting stripped", "is_default": false }, { "mode": "blocks", "description": "Structured blocks format with tool calls, results, and text", "is_default": false } ] } ```