mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +00:00
30 lines
691 B
YAML
30 lines
691 B
YAML
# CrewAI Deployment Configuration
|
|
name: my-crewai-app
|
|
port: 8000
|
|
host: 127.0.0.1 # Default to localhost for security
|
|
|
|
# Crews configuration
|
|
crews:
|
|
- name: research_crew
|
|
module_path: ./crews/research_crew.py
|
|
class_name: ResearchCrew
|
|
|
|
- name: analysis_crew
|
|
module_path: ./crews/analysis_crew.py
|
|
class_name: AnalysisCrew
|
|
|
|
# Flows configuration
|
|
flows:
|
|
- name: data_processing_flow
|
|
module_path: ./flows/data_processing_flow.py
|
|
class_name: DataProcessingFlow
|
|
|
|
- name: reporting_flow
|
|
module_path: ./flows/reporting_flow.py
|
|
class_name: ReportingFlow
|
|
|
|
# Additional configuration
|
|
environment:
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
- CREWAI_LOG_LEVEL=INFO
|