1 write to ContinuationToken
Microsoft.Extensions.AI.OpenAI (1)
OpenAIResponsesChatClient.cs (1)
139ContinuationToken = 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)
162ContinuationToken = ContinuationToken,
Microsoft.Extensions.AI.OpenAI.Tests (11)
OpenAIResponseClientIntegrationTests.cs (6)
234Assert.NotNull(response.ContinuationToken); 240while (response.ContinuationToken is not null && ++attempts < 10) 242chatOptions.ContinuationToken = response.ContinuationToken; 267Assert.NotNull(response.ContinuationToken); 273while (response.ContinuationToken is not null && ++attempts < 10) 275chatOptions.ContinuationToken = response.ContinuationToken;
OpenAIResponseClientTests.cs (5)
1851Assert.NotNull(response.ContinuationToken); 1852var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 1945Assert.NotNull(response.ContinuationToken); 1947var responsesContinuationToken = TestOpenAIResponsesContinuationToken.FromToken(response.ContinuationToken); 1960Assert.Null(response.ContinuationToken);