mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
10 lines
286 B
Python
10 lines
286 B
Python
#!/usr/bin/env python
|
|
from {{folder_name}}.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) |