Skip to main content
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Supported Types

string

const value: string = "<value>";

models.BaseInputsUnion1[]

const value: models.BaseInputsUnion1[] = [
  {
    content: "What is the weather today?",
    role: "user",
  },
];

any

const value: any = [
  {
    "content": "What is the weather today?",
    "role": "user",
  },
];