File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/ai-services/agents/includes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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.
103103do
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.
118118foreach (ThreadMessage threadMessage in messages )
119119{
120120 foreach (MessageContent content in threadMessage .ContentItems )
You can’t perform that action at this time.
0 commit comments