Addressed PR feedback

This commit is contained in:
Dmytro Struk
2025-11-12 12:48:23 -08:00
Unverified
parent 71358853fb
commit 5c74c3fd9c
7 changed files with 3432 additions and 3456 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ classifiers = [
]
dependencies = [
"agent-framework-core",
"azure-ai-projects == 2.0.0b1",
"azure-ai-projects >= 2.0.0b1",
"azure-ai-agents == 1.2.0b5",
"aiohttp",
]
@@ -691,10 +691,6 @@ def test_get_conversation_id_with_parsed_response_and_store_true() -> None:
"""Test get_conversation_id works with ParsedResponse when store is True."""
client = create_test_azure_ai_client(MagicMock())
# Create a simple BaseModel for testing
class TestModel(BaseModel):
content: str = "test"
# Mock ParsedResponse with conversation
mock_response = MagicMock(spec=ParsedResponse[BaseModel])
mock_response.id = "resp_parsed_12345"
@@ -711,10 +707,6 @@ def test_get_conversation_id_with_parsed_response_no_conversation() -> None:
"""Test get_conversation_id returns response ID with ParsedResponse when no conversation exists."""
client = create_test_azure_ai_client(MagicMock())
# Create a simple BaseModel for testing
class TestModel(BaseModel):
content: str = "test"
# Mock ParsedResponse without conversation
mock_response = MagicMock(spec=ParsedResponse[BaseModel])
mock_response.id = "resp_parsed_12345"