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(
99
99
agent .Id ,
100
100
additionalInstructions : " Please address the user as Jane Doe. The user has a premium account." );
101
101
102
- // Pool for the completion of the ThreadRun .
102
+ // Poll for completion.
103
103
do
104
104
{
105
105
Thread .Sleep (TimeSpan .FromMilliseconds (500 ));
@@ -114,7 +114,7 @@ Pageable<ThreadMessage> messages = client.Messages.GetMessages(
114
114
threadId : thread .Id ,
115
115
order : ListSortOrder .Ascending );
116
116
117
- // Display each message and open the image generated by Agent using CodeInterpreterToolDefinition.
117
+ // Display each message and open the image generated using CodeInterpreterToolDefinition.
118
118
foreach (ThreadMessage threadMessage in messages )
119
119
{
120
120
foreach (MessageContent content in threadMessage .ContentItems )
You can’t perform that action at this time.
0 commit comments