Skip to content

Commit c507ce8

Browse files
authored
Update quickstart-csharp.md
Fixed typo in comments and simplified comments too
1 parent 32ee76d commit c507ce8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-services/agents/includes/quickstart-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ThreadRun run = client.Runs.CreateRun(
9999
agent.Id,
100100
additionalInstructions: "Please address the user as Jane Doe. The user has a premium account.");
101101

102-
//Pool for the completion of the ThreadRun.
102+
//Poll for completion.
103103
do
104104
{
105105
Thread.Sleep(TimeSpan.FromMilliseconds(500));
@@ -114,7 +114,7 @@ Pageable<ThreadMessage> messages = client.Messages.GetMessages(
114114
threadId: thread.Id,
115115
order: ListSortOrder.Ascending);
116116

117-
//Display each message and open the image generated by Agent using CodeInterpreterToolDefinition.
117+
//Display each message and open the image generated using CodeInterpreterToolDefinition.
118118
foreach (ThreadMessage threadMessage in messages)
119119
{
120120
foreach (MessageContent content in threadMessage.ContentItems)

0 commit comments

Comments
 (0)