mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
Improve code based on PR feedback: add type hints, error handling, docs, and tests
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import inspect
|
import inspect
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any, Callable, Dict, TypeVar, cast
|
from typing import Any, Callable, Dict, List, TypeVar, Union, cast
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
@@ -116,15 +116,31 @@ def CrewBase(cls: T) -> T:
|
|||||||
def _map_agent_variables(
|
def _map_agent_variables(
|
||||||
self,
|
self,
|
||||||
agent_name: str,
|
agent_name: str,
|
||||||
agent_info: Dict[str, Any],
|
agent_info: Union[Dict[str, Any], List[Dict[str, Any]]],
|
||||||
agents: Dict[str, Callable],
|
agents: Dict[str, Callable],
|
||||||
llms: Dict[str, Callable],
|
llms: Dict[str, Callable],
|
||||||
tool_functions: Dict[str, Callable],
|
tool_functions: Dict[str, Callable],
|
||||||
cache_handler_functions: Dict[str, Callable],
|
cache_handler_functions: Dict[str, Callable],
|
||||||
callbacks: Dict[str, Callable],
|
callbacks: Dict[str, Callable],
|
||||||
) -> None:
|
) -> None:
|
||||||
|
"""Maps agent variables from configuration to internal state.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
agent_name: Name of the agent.
|
||||||
|
agent_info: Configuration as a dictionary or list of configurations.
|
||||||
|
agents: Dictionary of agent functions.
|
||||||
|
llms: Dictionary of LLM functions.
|
||||||
|
tool_functions: Dictionary of tool functions.
|
||||||
|
cache_handler_functions: Dictionary of cache handler functions.
|
||||||
|
callbacks: Dictionary of callback functions.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
ValueError: When an empty list is provided as agent_info.
|
||||||
|
"""
|
||||||
# If agent_info is a list, use the first item as the configuration
|
# If agent_info is a list, use the first item as the configuration
|
||||||
if isinstance(agent_info, list) and len(agent_info) > 0:
|
if isinstance(agent_info, list):
|
||||||
|
if not agent_info:
|
||||||
|
raise ValueError(f"Empty agent configuration list for agent {agent_name}")
|
||||||
agent_info = agent_info[0]
|
agent_info = agent_info[0]
|
||||||
|
|
||||||
if llm := agent_info.get("llm"):
|
if llm := agent_info.get("llm"):
|
||||||
|
|||||||
@@ -6,41 +6,110 @@ from pathlib import Path
|
|||||||
import pytest
|
import pytest
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
# Add a simple test to verify the fix works
|
|
||||||
def test_list_format_in_yaml():
|
class TestYamlConfig:
|
||||||
"""Test that list format in YAML is handled correctly."""
|
"""Tests for YAML configuration handling."""
|
||||||
# Create a test YAML content with list format
|
|
||||||
yaml_content = """
|
|
||||||
test_agent:
|
|
||||||
- name: test_agent
|
|
||||||
role: Test Agent
|
|
||||||
goal: Test Goal
|
|
||||||
"""
|
|
||||||
|
|
||||||
# Parse the YAML content
|
def test_list_format_in_yaml(self):
|
||||||
data = yaml.safe_load(yaml_content)
|
"""Test that list format in YAML is handled correctly."""
|
||||||
|
# Create a test YAML content with list format
|
||||||
# Get the agent_info which should be a list
|
yaml_content = """
|
||||||
agent_name = "test_agent"
|
test_agent:
|
||||||
agent_info = data[agent_name]
|
- name: test_agent
|
||||||
|
role: Test Agent
|
||||||
# Verify it's a list
|
goal: Test Goal
|
||||||
assert isinstance(agent_info, list)
|
"""
|
||||||
|
|
||||||
# Create a function that simulates the behavior of _map_agent_variables
|
# Parse the YAML content
|
||||||
# with our fix applied
|
data = yaml.safe_load(yaml_content)
|
||||||
def map_agent_variables(agent_name, agent_info):
|
|
||||||
# This is the fix we implemented
|
# Get the agent_info which should be a list
|
||||||
if isinstance(agent_info, list) and len(agent_info) > 0:
|
agent_name = "test_agent"
|
||||||
agent_info = agent_info[0]
|
agent_info = data[agent_name]
|
||||||
|
|
||||||
# Try to access a dictionary method on agent_info
|
# Verify it's a list
|
||||||
# This would fail with AttributeError if agent_info is still a list
|
assert isinstance(agent_info, list)
|
||||||
value = agent_info.get("name")
|
|
||||||
return value
|
# Create a function that simulates the behavior of _map_agent_variables
|
||||||
|
# with our fix applied
|
||||||
# Call the function - this would raise AttributeError before the fix
|
def map_agent_variables(agent_name, agent_info):
|
||||||
result = map_agent_variables(agent_name, agent_info)
|
# This is the fix we implemented
|
||||||
|
if isinstance(agent_info, list):
|
||||||
# Verify the result
|
if not agent_info:
|
||||||
assert result == "test_agent"
|
raise ValueError(f"Empty agent configuration list for agent {agent_name}")
|
||||||
|
agent_info = agent_info[0]
|
||||||
|
|
||||||
|
# Try to access a dictionary method on agent_info
|
||||||
|
# This would fail with AttributeError if agent_info is still a list
|
||||||
|
value = agent_info.get("name")
|
||||||
|
return value
|
||||||
|
|
||||||
|
# Call the function - this would raise AttributeError before the fix
|
||||||
|
result = map_agent_variables(agent_name, agent_info)
|
||||||
|
|
||||||
|
def test_empty_list_in_yaml(self):
|
||||||
|
"""Test that empty list in YAML raises appropriate error."""
|
||||||
|
# Create a test YAML content with empty list
|
||||||
|
yaml_content = """
|
||||||
|
test_agent: []
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Parse the YAML content
|
||||||
|
data = yaml.safe_load(yaml_content)
|
||||||
|
|
||||||
|
# Get the agent_info which should be an empty list
|
||||||
|
agent_name = "test_agent"
|
||||||
|
agent_info = data[agent_name]
|
||||||
|
|
||||||
|
# Verify it's a list
|
||||||
|
assert isinstance(agent_info, list)
|
||||||
|
assert len(agent_info) == 0
|
||||||
|
|
||||||
|
# Create a function that simulates the behavior of _map_agent_variables
|
||||||
|
def map_agent_variables(agent_name, agent_info):
|
||||||
|
if isinstance(agent_info, list):
|
||||||
|
if not agent_info:
|
||||||
|
raise ValueError(f"Empty agent configuration list for agent {agent_name}")
|
||||||
|
agent_info = agent_info[0]
|
||||||
|
return agent_info
|
||||||
|
|
||||||
|
# Call the function - should raise ValueError
|
||||||
|
with pytest.raises(ValueError, match=f"Empty agent configuration list for agent {agent_name}"):
|
||||||
|
map_agent_variables(agent_name, agent_info)
|
||||||
|
def test_multiple_items_in_list(self):
|
||||||
|
"""Test that when multiple items are in the list, the first one is used."""
|
||||||
|
# Create a test YAML content with multiple items in the list
|
||||||
|
yaml_content = """
|
||||||
|
test_agent:
|
||||||
|
- name: first_agent
|
||||||
|
role: First Agent
|
||||||
|
goal: First Goal
|
||||||
|
- name: second_agent
|
||||||
|
role: Second Agent
|
||||||
|
goal: Second Goal
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Parse the YAML content
|
||||||
|
data = yaml.safe_load(yaml_content)
|
||||||
|
|
||||||
|
# Get the agent_info which should be a list
|
||||||
|
agent_name = "test_agent"
|
||||||
|
agent_info = data[agent_name]
|
||||||
|
|
||||||
|
# Verify it's a list with multiple items
|
||||||
|
assert isinstance(agent_info, list)
|
||||||
|
assert len(agent_info) > 1
|
||||||
|
|
||||||
|
# Create a function that simulates the behavior of _map_agent_variables
|
||||||
|
def map_agent_variables(agent_name, agent_info):
|
||||||
|
if isinstance(agent_info, list):
|
||||||
|
if not agent_info:
|
||||||
|
raise ValueError(f"Empty agent configuration list for agent {agent_name}")
|
||||||
|
agent_info = agent_info[0]
|
||||||
|
return agent_info.get("name")
|
||||||
|
|
||||||
|
# Call the function - should return name from the first item
|
||||||
|
result = map_agent_variables(agent_name, agent_info)
|
||||||
|
|
||||||
|
# Verify only the first item was used
|
||||||
|
assert result == "first_agent"
|
||||||
|
|||||||
Reference in New Issue
Block a user