ChatDeveloperMessageContent - TypeScript SDK

ChatDeveloperMessageContent type definition

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

Developer message content

Supported Types

string

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

models.ChatContentText[]

1const value: models.ChatContentText[] = [
2 {
3 text: "Hello, world!",
4 type: "text",
5 },
6];