Compare commits

...

14 Commits

Author SHA1 Message Date
sweep-ai[bot] 14b334c9a0 Merge main into sweep/fix-vectorstoreindex-initialization 2023-08-09 22:20:23 +00:00
Yi Ding 18b8915f22 changeset 2023-08-09 15:20:09 -07:00
sweep-ai[bot] 4bb1f38c2a Merge main into sweep/fix-vectorstoreindex-initialization 2023-08-09 21:51:01 +00:00
Yi Ding 9bbfc2414e example npm update 2023-08-09 14:50:38 -07:00
sweep-ai[bot] 60aa2b1380 Merge main into sweep/fix-vectorstoreindex-initialization 2023-08-09 13:30:33 +00:00
yisding 9487aa1ed5 Merge pull request #65 from TomPenguin/export-store
Export storage
2023-08-09 06:30:27 -07:00
TomPenguin fd74c52fe8 export storage 2023-08-09 18:13:27 +09:00
sweep-ai[bot] 0c9b24c3a7 Merge main into sweep/fix-vectorstoreindex-initialization 2023-08-09 01:13:26 +00:00
Yi Ding 0d2bf51a2e 0.0.17 2023-08-08 18:13:08 -07:00
sweep-ai[bot] fc6efa754f Merge main into sweep/fix-vectorstoreindex-initialization 2023-08-09 01:10:31 +00:00
sweep-ai[bot] b9aeaf4f41 Update examples/vectorIndexGPT4.ts 2023-08-08 08:27:03 +00:00
sweep-ai[bot] a3e085bd8c Update examples/vectorIndexCustomize.ts 2023-08-08 08:26:44 +00:00
sweep-ai[bot] 751ded5bd3 Update examples/vectorIndexAnthropic.ts 2023-08-08 08:26:16 +00:00
sweep-ai[bot] 6d8b3ebf02 Update examples/vectorIndex.ts 2023-08-08 08:25:37 +00:00
15 changed files with 39 additions and 28 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"llamaindex": patch
---
Update storage exports (thanks @TomPenguin)
-5
View File
@@ -1,5 +0,0 @@
---
"llamaindex": patch
---
Breaking: changed default temp to 0.1 matching new Python change by @logan-markewich
-5
View File
@@ -1,5 +0,0 @@
---
"llamaindex": patch
---
Add support for new Replicate 4 bit Llama2 models
-5
View File
@@ -1,5 +0,0 @@
---
"llamaindex": patch
---
Bug fixes for Llama2 Replicate
+9
View File
@@ -1,5 +1,14 @@
# simple
## 0.0.15
### Patch Changes
- Updated dependencies [f80b062]
- Updated dependencies [b3fec86]
- Updated dependencies [b3fec86]
- llamaindex@0.0.17
## 0.0.14
### Patch Changes
+1 -1
View File
@@ -1,5 +1,5 @@
{
"version": "0.0.14",
"version": "0.0.15",
"private": true,
"name": "simple",
"dependencies": {
+3 -3
View File
@@ -179,9 +179,9 @@
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
},
"node_modules/llamaindex": {
"version": "0.0.16",
"resolved": "https://registry.npmjs.org/llamaindex/-/llamaindex-0.0.16.tgz",
"integrity": "sha512-zQa3qGu0SuRrprd9yCo5m5zFBHS4gTyqXlwUaL/aJoiO1sv9o4SQ3xOEZNciWvliHohu5uIkaiOwB85JfZ5eVQ==",
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/llamaindex/-/llamaindex-0.0.17.tgz",
"integrity": "sha512-2XrKEBUaEfATYmMcW4AkX0B4EiVpp6Gcg3aeWZ+gJZVYc5iMsApReH1gy5T/+XstJWz6lNYOP/DJnVRfkVj0Lg==",
"dependencies": {
"@anthropic-ai/sdk": "^0.5.9",
"lodash": "^4.17.21",
+1 -1
View File
@@ -24,4 +24,4 @@ async function main() {
console.log(response.toString());
}
main().catch(console.error);
main().catch(console.error);
+1 -1
View File
@@ -32,4 +32,4 @@ async function main() {
console.log(response.toString());
}
main().catch(console.error);
main().catch(console.error);
+1 -1
View File
@@ -22,4 +22,4 @@ async function main() {
console.log(response.response);
}
main().catch(console.error);
main().catch(console.error);
+1 -1
View File
@@ -34,4 +34,4 @@ async function main() {
console.log(response.toString());
}
main().catch(console.error);
main().catch(console.error);
+8
View File
@@ -1,5 +1,13 @@
# llamaindex
## 0.0.17
### Patch Changes
- f80b062: Breaking: changed default temp to 0.1 matching new Python change by @logan-markewich
- b3fec86: Add support for new Replicate 4 bit Llama2 models
- b3fec86: Bug fixes for Llama2 Replicate
## 0.0.16
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llamaindex",
"version": "0.0.16",
"version": "0.0.17",
"dependencies": {
"@anthropic-ai/sdk": "^0.5.9",
"lodash": "^4.17.21",
+1 -4
View File
@@ -24,7 +24,4 @@ export * from "./readers/base";
export * from "./readers/PDFReader";
export * from "./readers/SimpleDirectoryReader";
export * from "./storage/constants";
export * from "./storage/FileSystem";
export * from "./storage/StorageContext";
export * from "./storage/vectorStore/types";
export * from "./storage";
+7
View File
@@ -0,0 +1,7 @@
export * from "./constants";
export * from "./FileSystem";
export * from "./StorageContext";
export * from "./vectorStore/types";
export { SimpleDocumentStore } from "./docStore/SimpleDocumentStore";
export { SimpleIndexStore } from "./indexStore/SimpleIndexStore";
export { SimpleVectorStore } from "./vectorStore/SimpleVectorStore";