Skip to content

Commit b230b3f

Browse files
committed
Add Experimental attribute to CodeInterpreterCallStatus
1 parent f675bc2 commit b230b3f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

api/OpenAI.net8.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4624,6 +4624,7 @@ public class CodeInterpreterCallResponseItem : ResponseItem, IJsonModel<CodeInte
46244624
protected override ResponseItem PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options);
46254625
protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options);
46264626
}
4627+
[Experimental("OPENAI001")]
46274628
public enum CodeInterpreterCallStatus {
46284629
InProgress = 0,
46294630
Interpreting = 1,

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
using System.Diagnostics.CodeAnalysis;
2+
13
namespace OpenAI.Responses;
24

3-
// CUSTOM: Renamed and made public. Recreated as CLR enum.
5+
// CUSTOM:
6+
// - Added Experimental attribute.
7+
// - Renamed.
8+
// - Recreated as CLR enum.
9+
[Experimental("OPENAI001")]
410
[CodeGenType("CodeInterpreterToolCallItemResourceStatus")]
511
public enum CodeInterpreterCallStatus
612
{

0 commit comments

Comments
 (0)