mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-29 18:18:13 +00:00
fix: linting
This commit is contained in:
@@ -4,7 +4,6 @@ from typing import Callable
|
|||||||
from crewai import Crew
|
from crewai import Crew
|
||||||
from crewai.project.utils import memoize
|
from crewai.project.utils import memoize
|
||||||
|
|
||||||
|
|
||||||
"""Decorators for defining crew components and their behaviors."""
|
"""Decorators for defining crew components and their behaviors."""
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ from pydantic import BaseModel, ValidationError
|
|||||||
|
|
||||||
from crewai.agents.parser import OutputParserException
|
from crewai.agents.parser import OutputParserException
|
||||||
|
|
||||||
|
|
||||||
"""Parser for converting text outputs into Pydantic models."""
|
"""Parser for converting text outputs into Pydantic models."""
|
||||||
|
|
||||||
class CrewPydanticOutputParser:
|
class CrewPydanticOutputParser:
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ from pathlib import Path
|
|||||||
|
|
||||||
import appdirs
|
import appdirs
|
||||||
|
|
||||||
|
|
||||||
"""Path management utilities for CrewAI storage and configuration."""
|
"""Path management utilities for CrewAI storage and configuration."""
|
||||||
|
|
||||||
def db_storage_path():
|
def db_storage_path():
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ from pydantic import BaseModel, Field
|
|||||||
from crewai.agent import Agent
|
from crewai.agent import Agent
|
||||||
from crewai.task import Task
|
from crewai.task import Task
|
||||||
|
|
||||||
|
|
||||||
"""Handles planning and coordination of crew tasks."""
|
"""Handles planning and coordination of crew tasks."""
|
||||||
|
|
||||||
class PlanPerTask(BaseModel):
|
class PlanPerTask(BaseModel):
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ from pydantic import BaseModel, Field, PrivateAttr, model_validator
|
|||||||
|
|
||||||
from crewai.utilities.logger import Logger
|
from crewai.utilities.logger import Logger
|
||||||
|
|
||||||
|
|
||||||
"""Controls request rate limiting for API calls."""
|
"""Controls request rate limiting for API calls."""
|
||||||
|
|
||||||
class RPMController(BaseModel):
|
class RPMController(BaseModel):
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ from crewai.memory.storage.kickoff_task_outputs_storage import (
|
|||||||
)
|
)
|
||||||
from crewai.task import Task
|
from crewai.task import Task
|
||||||
|
|
||||||
|
|
||||||
"""Handles storage and retrieval of task execution outputs."""
|
"""Handles storage and retrieval of task execution outputs."""
|
||||||
|
|
||||||
class ExecutionLog(BaseModel):
|
class ExecutionLog(BaseModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user