@ai-sdk/provider 1.0.10 → 1.0.11
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
@@ -701,6 +701,10 @@ File content part of a prompt. It contains a file.
|
|
701
701
|
interface LanguageModelV1FilePart {
|
702
702
|
type: 'file';
|
703
703
|
/**
|
704
|
+
* Optional filename of the file.
|
705
|
+
*/
|
706
|
+
filename?: string;
|
707
|
+
/**
|
704
708
|
File data as base64 encoded string or as a URL.
|
705
709
|
*/
|
706
710
|
data: string | URL;
|
package/dist/index.d.ts
CHANGED
@@ -701,6 +701,10 @@ File content part of a prompt. It contains a file.
|
|
701
701
|
interface LanguageModelV1FilePart {
|
702
702
|
type: 'file';
|
703
703
|
/**
|
704
|
+
* Optional filename of the file.
|
705
|
+
*/
|
706
|
+
filename?: string;
|
707
|
+
/**
|
704
708
|
File data as base64 encoded string or as a URL.
|
705
709
|
*/
|
706
710
|
data: string | URL;
|