Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Display tool output to the user instead of sending it back to the LLM
from upsonic.tools import tool @tool(show_result=True) def display_report(data: str) -> str: """ Generate and display a report. Args: data: Data to include in report Returns: Formatted report """ return f"=== REPORT ===\n{data}\n=============="
show_result