@llamaindex/cloud
Advanced tools
Comparing version 2.0.24 to 3.0.0
{ | ||
"name": "@llamaindex/cloud", | ||
"version": "2.0.24", | ||
"version": "3.0.0", | ||
"type": "module", | ||
@@ -58,3 +58,3 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "https://github.com/run-llama/LlamaIndexTS.git", | ||
"url": "git+https://github.com/run-llama/LlamaIndexTS.git", | ||
"directory": "packages/cloud" | ||
@@ -66,8 +66,8 @@ }, | ||
"bunchee": "6.2.0", | ||
"@llamaindex/core": "0.4.23", | ||
"@llamaindex/core": "0.5.0", | ||
"@llamaindex/env": "0.1.27" | ||
}, | ||
"peerDependencies": { | ||
"@llamaindex/core": "0.4.23", | ||
"@llamaindex/env": "0.1.27" | ||
"@llamaindex/env": "0.1.27", | ||
"@llamaindex/core": "0.5.0" | ||
}, | ||
@@ -74,0 +74,0 @@ "scripts": { |
@@ -411,3 +411,3 @@ import { FileReader, Document } from '@llamaindex/core/schema'; | ||
]; | ||
this.stdout = params.stdout ?? typeof process !== "undefined" ? process.stdout : undefined; | ||
this.stdout = params.stdout ?? "undefined" !== "undefined" ? process.stdout : undefined; | ||
const apiKey = params.apiKey ?? getEnv("LLAMA_CLOUD_API_KEY"); | ||
@@ -414,0 +414,0 @@ if (!apiKey) { |
Sorry, the diff of this file is not supported yet
1665799