mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
10 lines
271 B
Python
10 lines
271 B
Python
#!/usr/bin/env python
|
|
from .crew import {{crew_name}}Crew
|
|
|
|
|
|
def run():
|
|
# Replace with your inputs, it will automatically interpolate any tasks and agents information
|
|
inputs = {
|
|
'topic': 'AI LLMs'
|
|
}
|
|
{{crew_name}}Crew().crew().kickoff(inputs=inputs) |