1 write to ContinuationToken
Microsoft.Extensions.AI.OpenAI (1)
OpenAIResponsesChatClient.cs (1)
116ContinuationToken = CreateContinuationToken(openAIResponse),
13 references to ContinuationToken
Microsoft.Extensions.AI.Abstractions (2)
ChatCompletion\ChatOptions.cs (1)
195/// 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)
206Assert.NotNull(response.ContinuationToken); 212while (response.ContinuationToken is not null && ++attempts < 10) 214chatOptions.ContinuationToken = response.ContinuationToken; 239Assert.NotNull(response.ContinuationToken); 245while (response.ContinuationToken is not null && ++attempts < 10) 247chatOptions.ContinuationToken = response.ContinuationToken;
OpenAIResponseClientTests.cs (5)
1849Assert.NotNull(response.ContinuationToken); 1850var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 1943Assert.NotNull(response.ContinuationToken); 1945var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 1958Assert.Null(response.ContinuationToken);