diff --git a/.changeset/tame-tables-sit.md b/.changeset/tame-tables-sit.md new file mode 100644 index 0000000000000000000000000000000000000000..d1d55f380dc5ec85c6108c1ed4f89a473dfac7b2 --- /dev/null +++ b/.changeset/tame-tables-sit.md @@ -0,0 +1,5 @@ +--- +"create-llama": patch +--- + +Bump web and database reader packages diff --git a/helpers/python.ts b/helpers/python.ts index 0a2f25aae705c3f01ddf89592c8771b5ab294c6e..aee63dad4bf6ebf0ba5dc22ff86c9fa050c2b111 100644 --- a/helpers/python.ts +++ b/helpers/python.ts @@ -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", diff --git a/helpers/tools.ts b/helpers/tools.ts index c92499f24e2b81829c24aeed2768446b7f2473ba..a635e3fd1f38e1eb38d6476df568ef245131d0a6 100644 --- a/helpers/tools.ts +++ b/helpers/tools.ts @@ -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: { diff --git a/templates/types/streaming/fastapi/pyproject.toml b/templates/types/streaming/fastapi/pyproject.toml index 218d6d69e6edb07c305c0faf1a685d61bbb283d9..b66ca34642bd499b3ae87f65e611989c5aab9c43 100644 --- a/templates/types/streaming/fastapi/pyproject.toml +++ b/templates/types/streaming/fastapi/pyproject.toml @@ -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]