PrintWarning prints a warning message on its own line. Used for non-fatal notices such as a turn that produced only reasoning or an empty response, which would otherwise be invisible in non-TUI runs.
(message string)
| 71 | // notices such as a turn that produced only reasoning or an empty response, |
| 72 | // which would otherwise be invisible in non-TUI runs. |
| 73 | func (p *Printer) PrintWarning(message string) { |
| 74 | p.Printf("\n⚠️ %s\n", message) |
| 75 | } |
| 76 | |
| 77 | // PrintAgentName prints the agent name header |
| 78 | func (p *Printer) PrintAgentName(agentName string) { |