openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
83db8ef208eccfa6eeff4aaa710be7330936f083

Branches

Tags

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

Clone

HTTPS

Download ZIP

OpenAI.Responses/src/Custom/Items/CodeInterpreterTool/CodeInterpreterCallStatus.cs

19lines · modecode

1using Microsoft.TypeSpec.Generator.Customizations;
2using System.Diagnostics.CodeAnalysis;
3
4namespace OpenAI.Responses;
5
6// CUSTOM:
7// - Added Experimental attribute.
8// - Renamed.
9// - Recreated as CLR enum.
10[Experimental("OPENAI001")]
11[CodeGenType("CodeInterpreterToolCallItemResourceStatus")]
12public enum CodeInterpreterCallStatus
13{
14 InProgress,
15 Interpreting,
16 Completed,
17 Incomplete,
18 Failed
19}