Python: Added examples for Azure OpenAI Responses agent (#363)

* Added examples for Azure OpenAI Responses agent

* Update python/samples/getting_started/agents/azure_responses_client/azure_responses_client_with_code_interpreter.py

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Dmytro Struk
2025-08-08 07:45:07 -07:00
committed by GitHub
Unverified
parent 895151a304
commit 757c48e367
5 changed files with 366 additions and 1 deletions
@@ -129,7 +129,7 @@ async def example_with_existing_thread_id() -> None:
result2 = await agent.run(query2, thread=thread, store=True)
print(f"Agent: {result2.text}")
print(f"Thread contains {len(thread.chat_messages or [])} messages in-memory.")
print("Note: The agent continues the conversation from the previous thread.\n")
print("Note: The agent continues the conversation from the previous thread by using thread ID.\n")
async def main() -> None: