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

Supported Types

string

const value: string = "This is a message from the developer.";

models.ChatContentText[]

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