@ai-sdk/anthropic 3.0.10 → 3.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  } from "@ai-sdk/provider-utils";
12
12
 
13
13
  // src/version.ts
14
- var VERSION = true ? "3.0.10" : "0.0.0-test";
14
+ var VERSION = true ? "3.0.12" : "0.0.0-test";
15
15
 
16
16
  // src/anthropic-messages-language-model.ts
17
17
  import {
@@ -4322,7 +4322,8 @@ function createAnthropic(options = {}) {
4322
4322
  fetch: options.fetch,
4323
4323
  generateId: (_a2 = options.generateId) != null ? _a2 : generateId2,
4324
4324
  supportedUrls: () => ({
4325
- "image/*": [/^https?:\/\/.*$/]
4325
+ "image/*": [/^https?:\/\/.*$/],
4326
+ "application/pdf": [/^https?:\/\/.*$/]
4326
4327
  })
4327
4328
  });
4328
4329
  };