Python: Updated package version (#1528)

* Updated package version

* Update python/CHANGELOG.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Updated metadata for Purview

* Updated test

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Dmytro Struk
2025-10-16 22:32:25 +00:00
committed by GitHub
co-authored by Copilot
parent 59da578902
commit 8c24a72107
12 changed files with 65 additions and 21 deletions
@@ -744,12 +744,12 @@ async def test_azure_openai_chat_client_agent_basic_run():
chat_client=AzureOpenAIChatClient(credential=AzureCliCredential()),
) as agent:
# Test basic run
response = await agent.run("Hello! Please respond with 'Hello World' exactly.")
response = await agent.run("Please respond with exactly: 'This is a response test.'")
assert isinstance(response, AgentRunResponse)
assert response.text is not None
assert len(response.text) > 0
assert "hello world" in response.text.lower()
assert "response test" in response.text.lower()
@pytest.mark.flaky