fix: add type hints and ignore type checks for config access

This commit is contained in:
Lucas Gomide
2025-04-14 11:42:09 -03:00
parent 10edde100e
commit 24a0f66141
12 changed files with 93 additions and 47 deletions

View File

@@ -257,10 +257,14 @@ reporting_task:
from crewai import Agent, Crew, Process, Task
from crewai.project import CrewBase, agent, crew, task
from crewai_tools import SerperDevTool
from crewai.agents.agent_builder.base_agent import BaseAgent
from typing import List
@CrewBase
class LatestAiDevelopmentCrew():
"""LatestAiDevelopment crew"""
agents: List[BaseAgent]
tasks: List[Task]
@agent
def researcher(self) -> Agent: