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

Supported Types

string

const value: string = "<value>";

models.ChatContentItems[]

const value: models.ChatContentItems[] = [
  {
    text: "Hello, world!",
    type: "text",
  },
];

any

const value: any = "<value>";