@ljoukov/llm 6.0.0 → 7.0.0
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/README.md +19 -11
- package/dist/index.cjs +509 -232
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +512 -235
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -488,8 +488,8 @@ type LlmFileDeleted = {
|
|
|
488
488
|
readonly object: "file";
|
|
489
489
|
};
|
|
490
490
|
type LlmFileUploadSource = "files_api" | "prompt_inline_offload" | "tool_output_spill" | "provider_mirror";
|
|
491
|
-
type LlmFileUploadBackend = "
|
|
492
|
-
type LlmFileUploadMode = "
|
|
491
|
+
type LlmFileUploadBackend = "gcs" | "gemini" | "vertex";
|
|
492
|
+
type LlmFileUploadMode = "gcs" | "mirror";
|
|
493
493
|
type LlmFileUploadEvent = {
|
|
494
494
|
readonly timestamp: string;
|
|
495
495
|
readonly source: LlmFileUploadSource;
|
package/dist/index.d.ts
CHANGED
|
@@ -488,8 +488,8 @@ type LlmFileDeleted = {
|
|
|
488
488
|
readonly object: "file";
|
|
489
489
|
};
|
|
490
490
|
type LlmFileUploadSource = "files_api" | "prompt_inline_offload" | "tool_output_spill" | "provider_mirror";
|
|
491
|
-
type LlmFileUploadBackend = "
|
|
492
|
-
type LlmFileUploadMode = "
|
|
491
|
+
type LlmFileUploadBackend = "gcs" | "gemini" | "vertex";
|
|
492
|
+
type LlmFileUploadMode = "gcs" | "mirror";
|
|
493
493
|
type LlmFileUploadEvent = {
|
|
494
494
|
readonly timestamp: string;
|
|
495
495
|
readonly source: LlmFileUploadSource;
|