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