1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
from azure.ai.projects import AIProjectClient
from test_base import TestBase, servicePreparer
from devtools_testutils import recorded_by_proxy
# NOTE: This is just a simple test to verify that the agent can be created and deleted using AIProjectClient.
# You can find comprehensive Agent functionally tests here:
# https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ai/azure-ai-agents/tests
class TestAgents(TestBase):
# To run this test, use the following command in the \sdk\ai\azure-ai-projects folder:
# cls & pytest tests\test_agents.py::TestAgents::test_agents -s
@servicePreparer()
@recorded_by_proxy
def test_agents(self, **kwargs):
endpoint = kwargs.pop("azure_ai_projects_tests_project_endpoint")
print("\n=====> Endpoint:", endpoint)
model_deployment_name = self.test_agents_params["model_deployment_name"]
agent_name = self.test_agents_params["agent_name"]
with AIProjectClient(
endpoint=endpoint,
credential=self.get_credential(AIProjectClient, is_async=False),
) as project_client:
print("[test_agents] Create agent")
agent = project_client.agents.create_agent(
model=model_deployment_name,
name=agent_name,
instructions="You are helpful agent",
)
assert agent.id
assert agent.model == model_deployment_name
assert agent.name == agent_name
print("[test_agents] Delete agent")
project_client.agents.delete_agent(agent.id)
|