Skip to content

Commit dc30567

Browse files
Merge pull request #1896 from lindazqli/patch-8
Update bing-grounding.md
2 parents d83b6c2 + d629b78 commit dc30567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-services/agents/how-to/tools/bing-grounding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ bing = BingGroundingTool(connection_id=conn_id)
175175
# Create agent with the bing tool and process assistant run
176176
with project_client:
177177
agent = project_client.agents.create_agent(
178-
model="gpt-4o-mini",
178+
model="gpt-4o",
179179
name="my-assistant",
180180
instructions="You are a helpful assistant",
181181
tools=bing.definitions,
@@ -199,7 +199,7 @@ ToolConnectionList connectionList = new ToolConnectionList
199199
BingGroundingToolDefinition bingGroundingTool = new BingGroundingToolDefinition(connectionList);
200200

201201
Response<Agent> agentResponse = await agentClient.CreateAgentAsync(
202-
model: "gpt-4o-mini",
202+
model: "gpt-4o",
203203
name: "my-assistant",
204204
instructions: "You are a helpful assistant.",
205205
tools: new List<ToolDefinition> { bingGroundingTool });

0 commit comments

Comments
 (0)