Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(anthropic): Add URL-based PDF support #5470

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

anishsrinivasan
Copy link

Add URL-based PDF support for Anthropic provider

This PR adds support for URL-based PDF documents in the Anthropic provider, complementing the existing base64-encoded PDF support. This aligns with Anthropic's official documentation which supports both methods.

https://docs.anthropic.com/en/docs/build-with-claude/pdf-support#option-1-url-based-pdf-document

Changes

  • Added support for URL-based PDF documents in the Anthropic provider
  • Updated documentation with examples for both URL and base64-encoded PDF usage
  • Added implementation and tests for URL-based PDF handling

Example Usage

const result = await generateText({
  model: anthropic('claude-3-5-sonnet-20241022'),
  messages: [
    {
      role: 'user',
      content: [
        {
          type: 'text',
          text: 'What is an embedding model according to this document?',
        },
        {
          type: 'file',
          data: new URL('https://example.com/document.pdf'),
          mimeType: 'application/pdf',
        },
      ],
    },
  ],
});

Documentation

Documentation has been updated to show both methods of PDF handling:

  1. URL-based PDF documents (new)
  2. Base64-encoded PDF documents (existing)

Changeset

---
"@ai-sdk/anthropic": patch
---

Add support for URL-based PDF documents in the Anthropic provider

Testing

  • Added tests for URL-based PDF handling
  • Verified existing base64 PDF functionality remains unchanged
  • Tested with various PDF URLs and sizes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant