Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

'tatus ->status bug fixed ' #416

Merged
merged 3 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ repos:
rev: v2.0.0 # Use the latest version
hooks:
- id: flake8
args: # arguments to configure black
- --ignore=E402,E501
args: # arguments to configure flake8
- --ignore=E402,E501,E203
2 changes: 1 addition & 1 deletion aixplain/modules/agent/agent_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ def to_dict(self) -> Dict[Text, Any]:
return base_dict

def __repr__(self) -> str:
fields = super().__repr__().strip("ModelResponse(").rstrip(")")
fields = super().__repr__()[len("ModelResponse(") : -1]
return f"AgentResponse({fields})"
65 changes: 58 additions & 7 deletions tests/unit/agent/agent_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ def test_invalid_llm_id():
def test_invalid_agent_name():
with pytest.raises(Exception) as exc_info:
AgentFactory.create(name="[Test]", description="", instructions="", tools=[], llm_id="6646261c6eb563165658bbb1")
assert (
str(exc_info.value)
== "Agent Creation Error: Agent name contains invalid characters. Only alphanumeric characters, spaces, hyphens, and brackets are allowed."
assert str(exc_info.value) == (
"Agent Creation Error: Agent name contains invalid characters. "
"Only alphanumeric characters, spaces, hyphens, and brackets are allowed."
)


Expand Down Expand Up @@ -300,7 +300,7 @@ def test_update_success(mock_model_factory_get):
# Capture warnings
with pytest.warns(
DeprecationWarning,
match="update\(\) is deprecated and will be removed in a future version. Please use save\(\) instead.",
match="update\(\) is deprecated and will be removed in a future version. Please use save\(\) instead.", # noqa: W605
):
agent.update()

Expand Down Expand Up @@ -412,9 +412,10 @@ def test_run_variable_error():
agent = Agent("123", "Test Agent", "Translate the input data into {target_language}", "Test Agent Role")
with pytest.raises(Exception) as exc_info:
agent.run_async(data={"query": "Hello, how are you?"}, output_format=OutputFormat.MARKDOWN)
assert (
str(exc_info.value)
== "Variable 'target_language' not found in data or parameters. This variable is required by the agent according to its description ('Translate the input data into {target_language}')."
assert str(exc_info.value) == (
"Variable 'target_language' not found in data or parameters. "
"This variable is required by the agent according to its description "
"('Translate the input data into {target_language}')."
)


Expand Down Expand Up @@ -913,3 +914,53 @@ def test_create_model_tool_with_text_supplier(supplier_input, expected_supplier,
assert tool.supplier.name == expected_supplier
assert tool.function == Function.TEXT_GENERATION
assert tool.description == "Test Tool"


def test_agent_response_repr():
from aixplain.enums import ResponseStatus
from aixplain.modules.agent.agent_response import AgentResponse, AgentResponseData

# Test case 1: Basic representation
response = AgentResponse(status=ResponseStatus.SUCCESS, data=AgentResponseData(input="test input"), completed=True)
repr_str = repr(response)

# Verify the representation starts with "AgentResponse("
assert repr_str.startswith("AgentResponse(")
assert repr_str.endswith(")")

# Verify key fields are present and correct
assert "status=SUCCESS" in repr_str
assert "completed=True" in repr_str

# Test case 2: Complex representation with all fields
response = AgentResponse(
status=ResponseStatus.SUCCESS,
data=AgentResponseData(
input="test input",
output="test output",
session_id="test_session",
intermediate_steps=["step1", "step2"],
execution_stats={"time": 1.0},
),
details={"test": "details"},
completed=True,
error_message="no error",
used_credits=0.5,
run_time=1.0,
usage={"tokens": 100},
url="http://test.url",
)
repr_str = repr(response)

# Verify all fields are present and formatted correctly
assert "status=SUCCESS" in repr_str
assert "completed=True" in repr_str
assert "error_message='no error'" in repr_str
assert "used_credits=0.5" in repr_str
assert "run_time=1.0" in repr_str
assert "url='http://test.url'" in repr_str
assert "details={'test': 'details'}" in repr_str
assert "usage={'tokens': 100}" in repr_str

# Most importantly, verify that 'status' is complete (not 'tatus')
assert "status=" in repr_str # Should find complete field name