Skip to content

Commit

Permalink
keep output
Browse files Browse the repository at this point in the history
  • Loading branch information
mpskex committed Oct 20, 2023
1 parent ba26830 commit a1f33db
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

## Unreleased

### New Features

- Add `DELETE` for MyScale vector store (#8159)

### Bug Fixes / Nits

- Add normalization to huggingface embeddings (#8145)
- Improve MyScale Hybrid Search (#8159)

## [0.8.45] - 2023-10-13

Expand Down
21 changes: 19 additions & 2 deletions docs/examples/vector_stores/MyScaleIndexDemo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,16 @@
"execution_count": null,
"id": "68cbd239-880e-41a3-98d8-dbb3fab55431",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Document ID: a5f2737c-ed18-4e5d-ab9a-75955edb816d\n",
"Number of Documents: 1\n"
]
}
],
"source": [
"# load documents\n",
"documents = SimpleDirectoryReader(\"../data/paul_graham\").load_data()\n",
Expand All @@ -100,7 +109,15 @@
"execution_count": null,
"id": "4febd54a",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"../data/paul_graham/paul_graham_essay.txt\n"
]
}
],
"source": [
"loader = SimpleDirectoryReader(\"../data/paul_graham\")\n",
"documents = loader.load_data()\n",
Expand Down

0 comments on commit a1f33db

Please sign in to comment.