feat: Support list of YAML files for agents_config and tasks_config in CrewBase

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-04-29 14:44:09 +00:00
parent 409892d65f
commit cbf5f9c393
6 changed files with 128 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
test_agent1:
role: Test Agent 1
goal: Test Goal 1
backstory: Test Backstory 1
verbose: true

View File

@@ -0,0 +1,8 @@
test_agent1:
role: Updated Test Agent 1
goal: Updated Test Goal 1
test_agent2:
role: Test Agent 2
goal: Test Goal 2
backstory: Test Backstory 2
verbose: true

View File

@@ -0,0 +1,4 @@
test_task1:
description: Test Description 1
expected_output: Test Output 1
agent: test_agent1

View File

@@ -0,0 +1,6 @@
test_task1:
description: Updated Test Description 1
test_task2:
description: Test Description 2
expected_output: Test Output 2
agent: test_agent2