openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI.Responses/src/Custom/Items/CodeInterpreterTool/CodeInterpreterCallStatus.cs
19lines · modecode
| 1 | using Microsoft.TypeSpec.Generator.Customizations; |
| 2 | using System.Diagnostics.CodeAnalysis; |
| 3 | |
| 4 | namespace OpenAI.Responses; |
| 5 | |
| 6 | // CUSTOM: |
| 7 | // - Added Experimental attribute. |
| 8 | // - Renamed. |
| 9 | // - Recreated as CLR enum. |
| 10 | [Experimental("OPENAI001")] |
| 11 | [CodeGenType("CodeInterpreterToolCallItemResourceStatus")] |
| 12 | public enum CodeInterpreterCallStatus |
| 13 | { |
| 14 | InProgress, |
| 15 | Interpreting, |
| 16 | Completed, |
| 17 | Incomplete, |
| 18 | Failed |
| 19 | } |