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
Tags llamaindex@0.2.5
No related merge requests found
---
"llamaindex": patch
---
Allow OpenAIAgent to be called without tools
# llamaindex
## 0.2.5
### Patch Changes
- 7d56cdf: Allow OpenAIAgent to be called without tools
## 0.2.4
### Patch Changes
......
{
"name": "llamaindex",
"version": "0.2.4",
"version": "0.2.5",
"expectedMinorVersion": "2",
"license": "MIT",
"type": "module",
......
# @llamaindex/edge
## 0.2.2
### Patch Changes
- 7a23cc6: feat: improve CallbackManager
- Updated dependencies [7a23cc6]
- @llamaindex/env@0.0.6
{
"name": "@llamaindex/edge",
"version": "0.2.3",
"version": "0.2.5",
"license": "MIT",
"type": "module",
"dependencies": {
......
......@@ -8,7 +8,9 @@ const corePackagePath = path.join(process.cwd(), "..", "core", "package.json");
const edgePackagePath = path.join(process.cwd(), "package.json");
const edgePackage = readJson(edgePackagePath);
edgePackage.dependencies = readJson(corePackagePath).dependencies;
const corePackage = readJson(corePackagePath);
edgePackage.dependencies = corePackage.dependencies;
edgePackage.version = corePackage.version;
writeJson(edgePackagePath, edgePackage);
execSync("pnpm install --lockfile-only", { stdio: "inherit" });
......
# @llamaindex/experimental
## 0.0.8
### Patch Changes
- Updated dependencies [7d56cdf]
- llamaindex@0.2.5
## 0.0.7
### Patch Changes
......
{
"name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"types": "dist/type/index.d.ts",
"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