Skip to content
Snippets Groups Projects
Commit 4a07c81f authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

release llamaindex@0.2.5

parent 7d56cdf0
No related branches found
No related tags found
No related merge requests found
---
"llamaindex": patch
---
Allow OpenAIAgent to be called without tools
# llamaindex # llamaindex
## 0.2.5
### Patch Changes
- 7d56cdf: Allow OpenAIAgent to be called without tools
## 0.2.4 ## 0.2.4
### Patch Changes ### Patch Changes
......
{ {
"name": "llamaindex", "name": "llamaindex",
"version": "0.2.4", "version": "0.2.5",
"expectedMinorVersion": "2", "expectedMinorVersion": "2",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
......
# @llamaindex/edge
## 0.2.2
### Patch Changes
- 7a23cc6: feat: improve CallbackManager
- Updated dependencies [7a23cc6]
- @llamaindex/env@0.0.6
{ {
"name": "@llamaindex/edge", "name": "@llamaindex/edge",
"version": "0.2.3", "version": "0.2.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"dependencies": { "dependencies": {
......
...@@ -8,7 +8,9 @@ const corePackagePath = path.join(process.cwd(), "..", "core", "package.json"); ...@@ -8,7 +8,9 @@ const corePackagePath = path.join(process.cwd(), "..", "core", "package.json");
const edgePackagePath = path.join(process.cwd(), "package.json"); const edgePackagePath = path.join(process.cwd(), "package.json");
const edgePackage = readJson(edgePackagePath); const edgePackage = readJson(edgePackagePath);
edgePackage.dependencies = readJson(corePackagePath).dependencies; const corePackage = readJson(corePackagePath);
edgePackage.dependencies = corePackage.dependencies;
edgePackage.version = corePackage.version;
writeJson(edgePackagePath, edgePackage); writeJson(edgePackagePath, edgePackage);
execSync("pnpm install --lockfile-only", { stdio: "inherit" }); execSync("pnpm install --lockfile-only", { stdio: "inherit" });
......
# @llamaindex/experimental # @llamaindex/experimental
## 0.0.8
### Patch Changes
- Updated dependencies [7d56cdf]
- llamaindex@0.2.5
## 0.0.7 ## 0.0.7
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/experimental", "name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS", "description": "Experimental package for LlamaIndexTS",
"version": "0.0.7", "version": "0.0.8",
"type": "module", "type": "module",
"types": "dist/type/index.d.ts", "types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js", "main": "dist/cjs/index.js",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment