openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.0.0-beta.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Custom/Common/GeneratorStubs.cs

12lines · modecode

1using System;
2using System.Collections.Generic;
3
4namespace OpenAI;
5
6internal interface IInternalListResponse<T>
7{
8 IReadOnlyList<T> Data { get; }
9 string FirstId { get; }
10 string LastId { get; }
11 bool HasMore { get; }
12}