knox / CrewAI-readme-13.sh
0 likes
0 forks
1 files
Last active
1 | uv lock |
2 | uv sync |
knox / CrewAI-readme-12.sh
0 likes
0 forks
1 files
Last active
1 | python src/my_project/main.py |
knox / CrewAI-readme-11.sh
0 likes
0 forks
1 files
Last active
1 | crewai run |
knox / CrewAI-readme-10.sh
0 likes
0 forks
1 files
Last active
1 | cd my_project |
2 | crewai install (Optional) |
knox / CrewAI-readme-9.py
0 likes
0 forks
1 files
Last active
1 | #!/usr/bin/env python |
2 | # src/my_project/main.py |
3 | import sys |
4 | from latest_ai_development.crew import LatestAiDevelopmentCrew |
5 | |
6 | def run(): |
7 | """ |
8 | Run the crew. |
9 | """ |
10 | inputs = { |
knox / CrewAI-readme-8.py
0 likes
0 forks
1 files
Last active
1 | # src/my_project/crew.py |
2 | from crewai import Agent, Crew, Process, Task |
3 | from crewai.project import CrewBase, agent, crew, task |
4 | from crewai_tools import SerperDevTool |
5 | |
6 | @CrewBase |
7 | class LatestAiDevelopmentCrew(): |
8 | """LatestAiDevelopment crew""" |
9 | |
10 | @agent |
knox / CrewAI-readme-7.yaml
0 likes
0 forks
1 files
Last active
1 | # src/my_project/config/tasks.yaml |
2 | research_task: |
3 | description: > |
4 | Conduct a thorough research about {topic} |
5 | Make sure you find any interesting and relevant information given |
6 | the current year is 2024. |
7 | expected_output: > |
8 | A list with 10 bullet points of the most relevant information about {topic} |
9 | agent: researcher |
knox / CrewAI-readme-6.yaml
0 likes
0 forks
1 files
Last active
1 | # src/my_project/config/agents.yaml |
2 | researcher: |
3 | role: > |
4 | {topic} Senior Data Researcher |
5 | goal: > |
6 | Uncover cutting-edge developments in {topic} |
7 | backstory: > |
8 | You're a seasoned researcher with a knack for uncovering the latest |
9 | developments in {topic}. Known for your ability to find the most relevant |
10 | information and present it in a clear and concise manner. |
knox / CrewAI-readme-5.sh
0 likes
0 forks
1 files
Last active
1 | crewai create crew latest-ai-development |