Class CodeInterpreterTool
-
- All Implemented Interfaces:
public final class CodeInterpreterTool
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
CodeInterpreterTool.Builder
A builder for CodeInterpreterTool.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
The type of tool being defined: code_interpreter
Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("code_interpreter")
final Map<String, JsonValue>
_additionalProperties()
final CodeInterpreterTool.Builder
toBuilder()
final CodeInterpreterTool
validate()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static CodeInterpreterTool.Builder
builder()
Returns a mutable builder for constructing an instance of CodeInterpreterTool. -
-
Method Detail
-
_type
final JsonValue _type()
The type of tool being defined:
code_interpreter
Expected to always return the following:
JsonValue.from("code_interpreter")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final CodeInterpreterTool.Builder toBuilder()
-
validate
final CodeInterpreterTool validate()
-
builder
final static CodeInterpreterTool.Builder builder()
Returns a mutable builder for constructing an instance of CodeInterpreterTool.
-
-
-
-