Skip to content

Commit

Permalink
Merge branch 'run-llama:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuhao-W authored May 6, 2024
2 parents 0e85f72 + c922587 commit 673d001
Show file tree
Hide file tree
Showing 54 changed files with 2,028 additions and 51 deletions.
15 changes: 15 additions & 0 deletions docs/docs/community/integrations/vector_stores.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ as the storage backend for `VectorStoreIndex`.
- TiDB (`TiDBVectorStore`). [Quickstart](../../examples/vector_stores/TiDBVector.ipynb). [Installation](https://tidb.cloud/ai). [Python Client](https://github.com/pingcap/tidb-vector-python).
- TimeScale (`TimescaleVectorStore`). [Installation](https://github.com/timescale/python-vector).
- Upstash (`UpstashVectorStore`). [Quickstart](https://upstash.com/docs/vector/overall/getstarted)
- Vertex AI Vector Search (`VertexAIVectorStore`). [Quickstart](https://cloud.google.com/vertex-ai/docs/vector-search/quickstart)
- Weaviate (`WeaviateVectorStore`). [Installation](https://weaviate.io/developers/weaviate/installation). [Python Client](https://weaviate.io/developers/weaviate/client-libraries/python).
- Zep (`ZepVectorStore`). [Installation](https://docs.getzep.com/deployment/quickstart/). [Python Client](https://docs.getzep.com/sdk/).
- Zilliz (`MilvusVectorStore`). [Quickstart](https://zilliz.com/doc/quick_start)
Expand Down Expand Up @@ -656,6 +657,19 @@ from llama_index.vector_stores.upstash import UpstashVectorStore
vector_store = UpstashVectorStore(url="YOUR_URL", token="YOUR_TOKEN")
```

**Vertex AI Vector Search**

```python
from llama_index.vector_stores.vertexaivectorsearch import VertexAIVectorStore

vector_store = VertexAIVectorStore(
project_id="[your-google-cloud-project-id]",
region="[your-google-cloud-region]",
index_id="[your-index-resource-name]",
endpoint_id="[your-index-endpoint-name]",
)
```

**Weaviate**

```python
Expand Down Expand Up @@ -846,6 +860,7 @@ documents = reader.load_data(
- [Lantern](../../examples/vector_stores/LanternIndexDemo.ipynb)
- [Metal](../../examples/vector_stores/MetalIndexDemo.ipynb)
- [Milvus](../../examples/vector_stores/MilvusIndexDemo.ipynb)
- [Milvus Hybrid Search](../../examples/vector_stores/MilvusHybridIndexDemo.ipynb)
- [MyScale](../../examples/vector_stores/MyScaleIndexDemo.ipynb)
- [ElsaticSearch](../../examples/vector_stores/ElasticsearchIndexDemo.ipynb)
- [FAISS](../../examples/vector_stores/FaissIndexDemo.ipynb)
Expand Down
85 changes: 85 additions & 0 deletions docs/docs/examples/data_connectors/WebPageDemo.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/docs/examples/retrievers/bedrock_retriever.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"outputs": [],
"source": [
"query = \"How big is Milky Way as compared to the entire universe?\"\n",
"retrieved_results = retriever._retrieve(query)\n",
"retrieved_results = retriever.retrieve(query)\n",
"\n",
"# Prints the first retrieved result\n",
"print(retrieved_results[0].get_content())"
Expand Down
Loading

0 comments on commit 673d001

Please sign in to comment.