Variables - TypeScript SDK

Variables type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Supported Types

string

1const value: string = "<value>";

models.InputText

1const value: models.InputText = {
2 text: "Hello, how can I help you?",
3 type: "input_text",
4};

models.InputImage

1const value: models.InputImage = {
2 detail: "auto",
3 type: "input_image",
4};

models.InputFile

1const value: models.InputFile = {
2 type: "input_file",
3};