-
Notifications
You must be signed in to change notification settings - Fork 3.1k
adding response format samples #41944
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
M-Hietala
merged 4 commits into
feature/azure-ai-agents/1.1.0b4
from
m-hietala/response_format_sample_update
Jul 10, 2025
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
...re-ai-agents/samples/agents_response_formats/sample_agents_json_object_response_format.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# ------------------------------------ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
# ------------------------------------ | ||
|
||
""" | ||
DESCRIPTION: | ||
This sample demonstrates how to create an agent with json response format. | ||
|
||
USAGE: | ||
python sample_agents_json_object_response_format.py | ||
|
||
Before running the sample: | ||
|
||
pip install azure-ai-projects azure-ai-agents azure-identity | ||
|
||
Set these environment variables with your own values: | ||
1) PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview | ||
page of your Azure AI Foundry portal. | ||
2) MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in | ||
the "Models + endpoints" tab in your Azure AI Foundry project. | ||
""" | ||
|
||
import os, time | ||
from azure.ai.projects import AIProjectClient | ||
from azure.identity import DefaultAzureCredential | ||
from azure.ai.agents.models import ListSortOrder, AgentsResponseFormat | ||
|
||
project_client = AIProjectClient( | ||
endpoint=os.environ["PROJECT_ENDPOINT"], | ||
credential=DefaultAzureCredential(), | ||
) | ||
|
||
with project_client: | ||
agents_client = project_client.agents | ||
|
||
agent = agents_client.create_agent( | ||
model=os.environ["MODEL_DEPLOYMENT_NAME"], | ||
name="my-agent", | ||
instructions="You are helpful agent. You will respond with a JSON object.", | ||
response_format=AgentsResponseFormat(type="json_object") | ||
) | ||
print(f"Created agent, agent ID: {agent.id}") | ||
|
||
thread = agents_client.threads.create() | ||
print(f"Created thread, thread ID: {thread.id}") | ||
|
||
# List all threads for the agent | ||
threads = agents_client.threads.list() | ||
|
||
message = agents_client.messages.create(thread_id=thread.id, role="user", content="Hello, give me a list of planets in our solar system.") | ||
print(f"Created message, message ID: {message.id}") | ||
|
||
run = agents_client.runs.create(thread_id=thread.id, agent_id=agent.id) | ||
|
||
# Poll the run as long as run status is queued or in progress | ||
while run.status in ["queued", "in_progress", "requires_action"]: | ||
# Wait for a second | ||
time.sleep(1) | ||
run = agents_client.runs.get(thread_id=thread.id, run_id=run.id) | ||
print(f"Run status: {run.status}") | ||
|
||
if run.status == "failed": | ||
print(f"Run error: {run.last_error}") | ||
|
||
agents_client.delete_agent(agent.id) | ||
print("Deleted agent") | ||
|
||
messages = agents_client.messages.list(thread_id=thread.id, order=ListSortOrder.ASCENDING) | ||
for msg in messages: | ||
if msg.text_messages: | ||
last_text = msg.text_messages[-1] | ||
print(f"{msg.role}: {last_text.text.value}") |
101 changes: 101 additions & 0 deletions
101
...re-ai-agents/samples/agents_response_formats/sample_agents_json_schema_response_format.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# ------------------------------------ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
# ------------------------------------ | ||
|
||
""" | ||
DESCRIPTION: | ||
This sample demonstrates how to use agents with JSON schema output format. | ||
|
||
USAGE: | ||
python sample_agents_json_schema_response_format.py | ||
|
||
Before running the sample: | ||
|
||
pip install azure-ai-projects azure-ai-agents azure-identity pydantic | ||
|
||
Set these environment variables with your own values: | ||
1) PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview | ||
page of your Azure AI Foundry portal. | ||
2) MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in | ||
the "Models + endpoints" tab in your Azure AI Foundry project. | ||
""" | ||
M-Hietala marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import os | ||
|
||
from enum import Enum | ||
from pydantic import BaseModel, TypeAdapter | ||
from azure.ai.projects import AIProjectClient | ||
from azure.identity import DefaultAzureCredential | ||
from azure.ai.agents.models import ( | ||
ListSortOrder, | ||
MessageTextContent, | ||
MessageRole, | ||
ResponseFormatJsonSchema, | ||
ResponseFormatJsonSchemaType, | ||
RunStatus, | ||
) | ||
|
||
|
||
# Create the pydantic model to represent the planet names and there masses. | ||
class Planets(str, Enum): | ||
Earth = "Earth" | ||
Mars = "Mars" | ||
Mercury = "Mercury" | ||
|
||
class Planet(BaseModel): | ||
planet: Planets | ||
mass: float | ||
|
||
|
||
project_client = AIProjectClient( | ||
endpoint=os.environ["PROJECT_ENDPOINT"], | ||
credential=DefaultAzureCredential(), | ||
) | ||
|
||
with project_client: | ||
agents_client = project_client.agents | ||
|
||
agent = agents_client.create_agent( | ||
model=os.environ["MODEL_DEPLOYMENT_NAME"], | ||
name="my-agent", | ||
instructions="Extract the information about planets.", | ||
response_format=ResponseFormatJsonSchemaType( | ||
json_schema=ResponseFormatJsonSchema( | ||
name="planet_mass", | ||
description="Extract planet mass.", | ||
schema=Planet.model_json_schema(), | ||
) | ||
), | ||
) | ||
print(f"Created agent, agent ID: {agent.id}") | ||
|
||
thread = agents_client.threads.create() | ||
print(f"Created thread, thread ID: {thread.id}") | ||
|
||
message = agents_client.messages.create( | ||
thread_id=thread.id, | ||
role="user", | ||
content=("The mass of the Mars is 6.4171E23 kg; the mass of the Earth is 5.972168E24 kg;"), | ||
) | ||
print(f"Created message, message ID: {message.id}") | ||
|
||
run = agents_client.runs.create_and_process(thread_id=thread.id, agent_id=agent.id) | ||
|
||
if run.status != RunStatus.COMPLETED: | ||
print(f"The run did not succeed: {run.status=}.") | ||
|
||
agents_client.delete_agent(agent.id) | ||
print("Deleted agent") | ||
|
||
messages = agents_client.messages.list( | ||
thread_id=thread.id, | ||
order=ListSortOrder.ASCENDING, | ||
) | ||
|
||
for msg in messages: | ||
if msg.role == MessageRole.AGENT: | ||
last_part = msg.content[-1] | ||
if isinstance(last_part, MessageTextContent): | ||
planet = TypeAdapter(Planet).validate_json(last_part.text.value) | ||
print(f"The mass of {planet.planet} is {planet.mass} kg.") |
73 changes: 73 additions & 0 deletions
73
sdk/ai/azure-ai-agents/samples/agents_response_formats/sample_agents_text_response_format.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# ------------------------------------ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
# ------------------------------------ | ||
|
||
""" | ||
DESCRIPTION: | ||
This sample demonstrates how to create an agent with text response format. | ||
|
||
USAGE: | ||
python sample_agents_text_response_format.py | ||
|
||
Before running the sample: | ||
|
||
pip install azure-ai-projects azure-ai-agents azure-identity | ||
|
||
Set these environment variables with your own values: | ||
1) PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview | ||
page of your Azure AI Foundry portal. | ||
2) MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in | ||
the "Models + endpoints" tab in your Azure AI Foundry project. | ||
""" | ||
|
||
import os, time | ||
from azure.ai.projects import AIProjectClient | ||
from azure.identity import DefaultAzureCredential | ||
from azure.ai.agents.models import ListSortOrder, AgentsResponseFormat | ||
|
||
project_client = AIProjectClient( | ||
endpoint=os.environ["PROJECT_ENDPOINT"], | ||
credential=DefaultAzureCredential(), | ||
) | ||
|
||
with project_client: | ||
agents_client = project_client.agents | ||
|
||
agent = agents_client.create_agent( | ||
model=os.environ["MODEL_DEPLOYMENT_NAME"], | ||
name="my-agent", | ||
instructions="You are helpful agent.", | ||
response_format=AgentsResponseFormat(type="text") | ||
) | ||
print(f"Created agent, agent ID: {agent.id}") | ||
|
||
thread = agents_client.threads.create() | ||
print(f"Created thread, thread ID: {thread.id}") | ||
|
||
# List all threads for the agent | ||
threads = agents_client.threads.list() | ||
|
||
message = agents_client.messages.create(thread_id=thread.id, role="user", content="Hello, give me a list of planets in our solar system.") | ||
print(f"Created message, message ID: {message.id}") | ||
|
||
run = agents_client.runs.create(thread_id=thread.id, agent_id=agent.id) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: let us say run = agents_client.runs.create_and_process(thread_id=thread.id, agent_id=agent.id) |
||
|
||
# Poll the run as long as run status is queued or in progress | ||
while run.status in ["queued", "in_progress", "requires_action"]: | ||
# Wait for a second | ||
time.sleep(1) | ||
run = agents_client.runs.get(thread_id=thread.id, run_id=run.id) | ||
print(f"Run status: {run.status}") | ||
|
||
if run.status == "failed": | ||
print(f"Run error: {run.last_error}") | ||
|
||
agents_client.delete_agent(agent.id) | ||
print("Deleted agent") | ||
|
||
messages = agents_client.messages.list(thread_id=thread.id, order=ListSortOrder.ASCENDING) | ||
for msg in messages: | ||
if msg.text_messages: | ||
last_text = msg.text_messages[-1] | ||
print(f"{msg.role}: {last_text.text.value}") |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: let us say