do() runs silently while print_do() shows output. You can change this behavior using the print parameter or environment variable.
Quick Start
Always Print or Never Print
Set theprint parameter when creating your agent:
Global Control with Environment Variable
UseUPSONIC_AGENT_PRINT to control all agents in your application:
Environment variable has the highest priority and overrides both the
print parameter and method choice.Priority Order
When multiple settings conflict, this order applies:- Environment variable — Always wins
- Agent parameter —
Agent(print=True/False) - Method choice —
print_do()prints,do()doesn’t

