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

Supported Types

models.AnthropicImageBlockParam

const value: models.AnthropicImageBlockParam = {
  source: {
    data: "/9j/4AAQ...",
    mediaType: "image/jpeg",
    type: "base64",
  },
  type: "image",
};

models.AnthropicTextBlockParam

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