Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Configure agent output formatting
output
# Show current output style praisonai output status
praisonai output status
╭─ Output Style ───────────────────────────────────────────────────────────────╮ │ Style: concise │ │ Format: markdown │ │ Verbosity: minimal │ ╰──────────────────────────────────────────────────────────────────────────────╯
praisonai output set concise
concise
detailed
technical
conversational
structured
minimal
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)