We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bf1e2 commit b60777aCopy full SHA for b60777a
1 file changed
agent-framework/user-guide/agents/agent-background-responses.md
@@ -74,7 +74,7 @@ AgentRunResponse response = await agent.RunAsync("Write a very long novel about
74
// Continue to poll until the final response is received
75
while (response.ContinuationToken is not null)
76
{
77
- // Wait before polling again.
+ // Wait before polling again.
78
await Task.Delay(TimeSpan.FromSeconds(2));
79
80
options.ContinuationToken = response.ContinuationToken;
0 commit comments