Skip to content

Commit d34d350

Browse files
authored
Making the model name clearer and removing comment code
1 parent 87c36b7 commit d34d350

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/ai-services/openai/includes/assistants-csharp.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ An individual assistant can access up to 128 tools including `code interpreter`,
9090
```csharp
9191
// Create an assistant
9292
Assistant assistant = await client.CreateAssistantAsync(
93-
new AssistantCreationOptions("gpt-4")
93+
new AssistantCreationOptions("gpt-4-1106-preview") // Replace this with the name of your model deployment
9494
{
9595
Name = "Math Tutor",
9696
Instructions = "You are a personal math tutor. Write and run code to answer math questions.",
@@ -168,5 +168,3 @@ If you want to clean up and remove an OpenAI resource, you can delete the resour
168168
169169
* Learn more about how to use Assistants with our [How-to guide on Assistants](../how-to/assistant.md).
170170
* [Azure OpenAI Assistants API samples](https://github.com/Azure-Samples/azureai-samples/tree/main/scenarios/Assistants)
171-
172-
-->

0 commit comments

Comments
 (0)