CrewAI-readme-9.py
· 276 B · Python
Sin formato
#!/usr/bin/env python
# src/my_project/main.py
import sys
from latest_ai_development.crew import LatestAiDevelopmentCrew
def run():
"""
Run the crew.
"""
inputs = {
'topic': 'AI Agents'
}
LatestAiDevelopmentCrew().crew().kickoff(inputs=inputs)
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 = { |
11 | 'topic': 'AI Agents' |
12 | } |
13 | LatestAiDevelopmentCrew().crew().kickoff(inputs=inputs) |