-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Description
Description
How could i disable the verbose information of flow? it seed that there is no verbose para for flow.
╭───────────────────────────────────── Flow Execution ─────────────────────────────────────╮
│ │
│ Starting Flow Execution │
│ Name: GuideCreatorFlow │
│ ID: 27cfce60-1762-4fdd-bd0f-9e66d0f3f259 │
│ Tool Args: │
│ │
│ │
╰──────────────────────────────────────────────────────────────────────────────────────────╯
Steps to Reproduce
when using flow.
Expected behavior
the verbose of flow could be disabled.
Screenshots/Code snippets
def print_panel(
self, content: Text, title: str, style: str = "blue", is_flow: bool = False
) -> None:
"""Print a panel with consistent formatting if verbose is enabled."""
panel = self.create_panel(content, title, style)
if is_flow:
self.print(panel)
self.print()
else:
if self.verbose:
self.print(panel)
Operating System
Ubuntu 24.04
Python Version
3.10
crewAI Version
1.20.1
crewAI Tools Version
1.20.1
Virtual Environment
Venv
Evidence
N/A
Possible Solution
set up a env variable.
Additional context
crewai/events/utils/console_formatter.py
def print_panel(
self, content: Text, title: str, style: str = "blue", is_flow: bool = False
) -> None:
"""Print a panel with consistent formatting if verbose is enabled."""
panel = self.create_panel(content, title, style)
if is_flow:
self.print(panel)
self.print()
else:
if self.verbose:
self.print(panel)