Compare commits

...

5 Commits

Author SHA1 Message Date
yisding 8cdb07f151 changeset 2023-11-17 09:05:24 -08:00
yisding ea403a0ffe Merge branch 'main' of github.com:run-llama/LlamaIndexTS 2023-11-17 09:04:33 -08:00
yisding 7f0b4e66ae create-llama 0.0.7 2023-11-17 09:04:01 -08:00
yisding 3b226965ba Merge pull request #205 from run-llama/ms/copy-cache-folder
fix: copy cache folder for vercel deployments
2023-11-17 09:03:26 -08:00
Marcus Schiesser 079a1d5cc3 fix: copy cache folder for vercel deployments 2023-11-17 08:52:42 +07:00
6 changed files with 18 additions and 6 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"create-llama": patch
---
Fix Next deployment (thanks @seldo and @marcusschiesser)
-5
View File
@@ -1,5 +0,0 @@
---
"create-llama": patch
---
Added more to README and made it easier to switch models (thanks @seldo)
+6
View File
@@ -1,5 +1,11 @@
# create-llama
## 0.0.7
### Patch Changes
- 9f9f293: Added more to README and made it easier to switch models (thanks @seldo)
## 0.0.6
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-llama",
"version": "0.0.6",
"version": "0.0.7",
"keywords": [
"rag",
"llamaindex",
@@ -2,6 +2,9 @@
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ["llamaindex"],
outputFileTracingIncludes: {
"/*": ["./cache/**/*"],
},
},
};
@@ -2,6 +2,9 @@
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ["llamaindex"],
outputFileTracingIncludes: {
"/*": ["./cache/**/*"],
},
},
};