This commit is contained in:
Brandon Hancock
2025-01-23 23:48:36 -05:00
parent e27a15023c
commit 319da2129a
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
import warnings
warnings.filterwarnings(
"ignore",
message="Valid config keys have changed in V2*",
category=UserWarning,
)
import os
from importlib.metadata import version as get_version
from typing import Optional, Tuple

View File

@@ -11,6 +11,7 @@ def run_crew() -> None:
"""
Run the crew by running a command in the UV environment.
"""
click.echo("Running crew hello...")
command = ["uv", "run", "run_crew"]
crewai_version = get_crewai_version()
min_required_version = "0.71.0"

View File

@@ -57,9 +57,6 @@ except ImportError:
agentops = None
warnings.filterwarnings("ignore", category=SyntaxWarning, module="pysbd")
class Crew(BaseModel):
"""
Represents a group of agents, defining how they should collaborate and the tasks they should perform.