Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
The output command manages output style configuration.
Quick Start
# Show current output style
praisonai output status
Usage
Show Status
Expected Output:
╭─ Output Style ───────────────────────────────────────────────────────────────╮
│ Style: concise │
│ Format: markdown │
│ Verbosity: minimal │
╰──────────────────────────────────────────────────────────────────────────────╯
Set Style
praisonai output set concise
Available styles: concise, detailed, technical, conversational, structured, minimal
Python API
from praisonaiagents.output import OutputStyle, OutputFormatter
# Use preset
style = OutputStyle.concise()
formatter = OutputFormatter(style)
# Format text
text = "# Hello\n\n**Bold** text"
plain = formatter.format(text)
See Also