openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
specification/client/models/batch.models.tsp
16lines · modecode
| 1 | import "../../base/typespec/batch/main.tsp"; |
| 2 | import "./common.models.tsp"; |
| 3 | import "@azure-tools/typespec-client-generator-core"; |
| 4 | |
| 5 | using Azure.ClientGenerator.Core; |
| 6 | |
| 7 | namespace OpenAI; |
| 8 | |
| 9 | @access(Access.public) |
| 10 | @usage(Usage.input) |
| 11 | model BatchCollectionOptions { |
| 12 | ...DotNetCollectionAfterQueryParameter, |
| 13 | ...DotNetCollectionLimitQueryParameter, |
| 14 | } |
| 15 | |
| 16 | |
| 17 | |