openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.0.0-beta.4

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Utility/ServerSentEventFieldKind.cs

14lines · modecode

1namespace OpenAI;
2
3/// <summary>
4/// The kind of line or field received over an SSE stream.
5/// See SSE specification: https://html.spec.whatwg.org/multipage/server-sent-events.html
6/// </summary>
7internal enum ServerSentEventFieldKind
8{
9 Ignore,
10 Event,
11 Data,
12 Id,
13 Retry,
14}
15