1 write to ContinuationToken
Microsoft.Extensions.AI.OpenAI (1)
OpenAIResponsesChatClient.cs (1)
128ContinuationToken = CreateContinuationToken(responseResult),
13 references to ContinuationToken
Microsoft.Extensions.AI.Abstractions (2)
ChatCompletion\ChatOptions.cs (1)
202/// can be polled for completion by obtaining the token from the <see cref="ChatResponse.ContinuationToken"/> property
ChatCompletion\ChatResponse.cs (1)
163ContinuationToken = ContinuationToken,
Microsoft.Extensions.AI.OpenAI.Tests (11)
OpenAIResponseClientIntegrationTests.cs (6)
239Assert.NotNull(response.ContinuationToken); 245while (response.ContinuationToken is not null && ++attempts < 10) 247chatOptions.ContinuationToken = response.ContinuationToken; 272Assert.NotNull(response.ContinuationToken); 278while (response.ContinuationToken is not null && ++attempts < 10) 280chatOptions.ContinuationToken = response.ContinuationToken;
OpenAIResponseClientTests.cs (5)
2394Assert.NotNull(response.ContinuationToken); 2395var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 2488Assert.NotNull(response.ContinuationToken); 2490var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 2503Assert.Null(response.ContinuationToken);