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

BUG-382: fixed tests #418

Merged
merged 2 commits into from
Feb 26, 2025
Merged
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
45 changes: 37 additions & 8 deletions tests/functional/team_agent/team_agent_functional_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from copy import copy
from uuid import uuid4
import pytest
from unittest.mock import patch

from aixplain import aixplain_v2 as v2

Expand Down Expand Up @@ -167,16 +166,46 @@ def test_draft_team_agent_update(run_input_map, TeamAgentFactory):


@pytest.mark.parametrize("TeamAgentFactory", [TeamAgentFactory, v2.TeamAgent])
def test_fail_non_existent_llm(TeamAgentFactory):
with patch("logging.warning") as mock_warning:
AgentFactory.create(
name="Test Agent",
def test_fail_non_existent_llm(run_input_map, TeamAgentFactory):
for team in TeamAgentFactory.list()["results"]:
team.delete()
for agent in AgentFactory.list()["results"]:
agent.delete()

agents = []
for agent in run_input_map["agents"]:
tools = []
if "model_tools" in agent:
for tool in agent["model_tools"]:
tool_ = copy(tool)
for supplier in Supplier:
if tool["supplier"] is not None and tool["supplier"].lower() in [
supplier.value["code"].lower(),
supplier.value["name"].lower(),
]:
tool_["supplier"] = supplier
break
tools.append(AgentFactory.create_model_tool(**tool_))
if "pipeline_tools" in agent:
for tool in agent["pipeline_tools"]:
tools.append(AgentFactory.create_pipeline_tool(pipeline=tool["pipeline_id"], description=tool["description"]))

agent = AgentFactory.create(
name=agent["agent_name"],
description=agent["agent_name"],
instructions=agent["agent_name"],
llm_id=agent["llm_id"],
tools=tools,
)
agents.append(agent)
with pytest.raises(Exception) as exc_info:
TeamAgentFactory.create(
name="Non Existent LLM",
description="",
instructions="",
llm_id="non_existent_llm",
tools=[AgentFactory.create_model_tool(function=Function.TRANSLATION)],
agents=agents,
)
assert mock_warning.call_count == 2
assert str(exc_info.value) == "Large Language Model with ID 'non_existent_llm' not found."


@pytest.mark.parametrize("TeamAgentFactory", [TeamAgentFactory, v2.TeamAgent])
Expand Down