ChatUserMessageContent - TypeScript SDK

ChatUserMessageContent type definition

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

User message content

Supported Types

string

1const value: string = "What is the capital of France?";

models.ChatContentItems[]

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