chore: bump tool package versions (#273)

This commit is contained in:
Huu Le
2024-09-06 13:12:42 +07:00
committed by GitHub
parent a1892bef26
commit 6a409cbbc6
4 changed files with 12 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"create-llama": patch
---
Bump web and database reader packages
+2 -2
View File
@@ -109,13 +109,13 @@ const getAdditionalDependencies = (
case "web":
dependencies.push({
name: "llama-index-readers-web",
version: "^0.1.6",
version: "^0.2.2",
});
break;
case "db":
dependencies.push({
name: "llama-index-readers-database",
version: "^0.1.3",
version: "^0.2.0",
});
dependencies.push({
name: "pymysql",
+4 -4
View File
@@ -41,7 +41,7 @@ export const supportedTools: Tool[] = [
dependencies: [
{
name: "llama-index-tools-google",
version: "0.1.2",
version: "^0.2.0",
},
],
supportedFrameworks: ["fastapi"],
@@ -83,7 +83,7 @@ For better results, you can specify the region parameter to get results from a s
dependencies: [
{
name: "llama-index-tools-wikipedia",
version: "0.1.2",
version: "^0.2.0",
},
],
supportedFrameworks: ["fastapi", "express", "nextjs"],
@@ -145,7 +145,7 @@ For better results, you can specify the region parameter to get results from a s
dependencies: [
{
name: "llama-index-tools-openapi",
version: "0.1.3",
version: "0.2.0",
},
{
name: "jsonschema",
@@ -153,7 +153,7 @@ For better results, you can specify the region parameter to get results from a s
},
{
name: "llama-index-tools-requests",
version: "0.1.3",
version: "0.2.0",
},
],
config: {
@@ -14,7 +14,7 @@ fastapi = "^0.109.1"
uvicorn = { extras = ["standard"], version = "^0.23.2" }
python-dotenv = "^1.0.0"
aiostream = "^0.5.2"
llama-index = "0.11.1"
llama-index = "0.11.6"
cachetools = "^5.3.3"
[build-system]