Spaces:
Running
Running
| from crewai import Agent, Crew, Process, Task | |
| from crewai.project import CrewBase, agent, crew, task | |
| from crewai.agents.agent_builder.base_agent import BaseAgent | |
| from typing import List | |
| # If you want to run a snippet of code before or after the crew starts, | |
| # you can use the @before_kickoff and @after_kickoff decorators | |
| # https://docs.crewai.com/concepts/crews#example-crew-class-with-decorators | |
| class Coder(): | |
| """Coder crew""" | |
| agents_config = 'config/agents.yaml' | |
| tasks_config = 'config/tasks.yaml' | |
| # Learn more about YAML configuration files here: | |
| # Agents: https://docs.crewai.com/concepts/agents#yaml-configuration-recommended | |
| # Tasks: https://docs.crewai.com/concepts/tasks#yaml-configuration-recommended | |
| # If you would like to add tools to your agents, you can learn more about it here: | |
| # https://docs.crewai.com/concepts/agents#agent-tools | |
| def coder(self) -> Agent: | |
| return Agent( | |
| config=self.agents_config['coder'], # type: ignore[index] | |
| verbose=True, | |
| allow_code_excution = True, | |
| code_execution_mode = "safe", | |
| max_execution_time = 100, | |
| max_retry_limit=5 | |
| ) | |
| # To learn more about structured task outputs, | |
| # task dependencies, and task callbacks, check out the documentation: | |
| # https://docs.crewai.com/concepts/tasks#overview-of-a-task | |
| def coding_task(self) -> Task: | |
| return Task( | |
| config=self.tasks_config['coding_task'], # type: ignore[index] | |
| ) | |
| def crew(self) -> Crew: | |
| """Creates the Coder crew""" | |
| # To learn how to add knowledge sources to your crew, check out the documentation: | |
| # https://docs.crewai.com/concepts/knowledge#what-is-knowledge | |
| return Crew( | |
| agents=self.agents, # Automatically created by the @agent decorator | |
| tasks=self.tasks, # Automatically created by the @task decorator | |
| process=Process.sequential, | |
| verbose=True, | |
| # process=Process.hierarchical, # In case you wanna use that instead https://docs.crewai.com/how-to/Hierarchical/ | |
| ) | |