This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
MIT License
5.46k
stars
4.8k
forks
source link
[OpenAI] [Scenario] Add conveniences for pagination #42487
The following service methods return pageable collections:
These are identifiable by the fact that the response body has the following two properties:
"object": "list"
"has_more": true/false
We should explore adding a client similar to Azure.Core's
Pageable
but tailored to OpenAI's approach to pagination (e.g., anOpenAIPageable
?)