File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/ai-services/agents/how-to/tools Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ bing = BingGroundingTool(connection_id=conn_id)
175
175
# Create agent with the bing tool and process assistant run
176
176
with project_client:
177
177
agent = project_client.agents.create_agent(
178
- model = " gpt-4o-mini " ,
178
+ model = " gpt-4o" ,
179
179
name = " my-assistant" ,
180
180
instructions = " You are a helpful assistant" ,
181
181
tools = bing.definitions,
@@ -199,7 +199,7 @@ ToolConnectionList connectionList = new ToolConnectionList
199
199
BingGroundingToolDefinition bingGroundingTool = new BingGroundingToolDefinition (connectionList );
200
200
201
201
Response < Agent > agentResponse = await agentClient .CreateAgentAsync (
202
- model : " gpt-4o-mini " ,
202
+ model : " gpt-4o" ,
203
203
name : " my-assistant" ,
204
204
instructions : " You are a helpful assistant." ,
205
205
tools : new List <ToolDefinition > { bingGroundingTool });
You can’t perform that action at this time.
0 commit comments