mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-20 18:12:35 +00:00
docs, community: aerospike docs update (#28717)
Co-authored-by: Jesse Schumacher <jschumacher@aerospike.com> Co-authored-by: Jesse S <jschmidt@aerospike.com> Co-authored-by: dylan <dwelch@aerospike.com>
This commit is contained in:
@@ -29,8 +29,8 @@
|
|||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"PROXIMUS_HOST = \"<avs-ip>\"\n",
|
"AVS_HOST = \"<avs-ip>\"\n",
|
||||||
"PROXIMUS_PORT = 5000"
|
"AVS_PORT = 5000"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
},
|
},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"!pip install --upgrade --quiet aerospike-vector-search==0.6.1 langchain-community sentence-transformers langchain"
|
"!pip install --upgrade --quiet aerospike-vector-search==3.0.1 langchain-community sentence-transformers langchain"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -369,7 +369,7 @@
|
|||||||
"from langchain_community.vectorstores import Aerospike\n",
|
"from langchain_community.vectorstores import Aerospike\n",
|
||||||
"\n",
|
"\n",
|
||||||
"# Here we are using the AVS host and port you configured earlier\n",
|
"# Here we are using the AVS host and port you configured earlier\n",
|
||||||
"seed = HostPort(host=PROXIMUS_HOST, port=PROXIMUS_PORT)\n",
|
"seed = HostPort(host=AVS_HOST, port=AVS_PORT)\n",
|
||||||
"\n",
|
"\n",
|
||||||
"# The namespace of where to place our vectors. This should match the vector configured in your docstore.conf file.\n",
|
"# The namespace of where to place our vectors. This should match the vector configured in your docstore.conf file.\n",
|
||||||
"NAMESPACE = \"test\"\n",
|
"NAMESPACE = \"test\"\n",
|
||||||
@@ -401,7 +401,7 @@
|
|||||||
" vector_field=VECTOR_KEY,\n",
|
" vector_field=VECTOR_KEY,\n",
|
||||||
" vector_distance_metric=MODEL_DISTANCE_CALC,\n",
|
" vector_distance_metric=MODEL_DISTANCE_CALC,\n",
|
||||||
" dimensions=MODEL_DIM,\n",
|
" dimensions=MODEL_DIM,\n",
|
||||||
" index_meta_data={\n",
|
" index_labels={\n",
|
||||||
" \"model\": \"miniLM-L6-v2\",\n",
|
" \"model\": \"miniLM-L6-v2\",\n",
|
||||||
" \"date\": \"05/04/2024\",\n",
|
" \"date\": \"05/04/2024\",\n",
|
||||||
" \"dim\": str(MODEL_DIM),\n",
|
" \"dim\": str(MODEL_DIM),\n",
|
||||||
|
@@ -168,7 +168,7 @@ class Aerospike(VectorStore):
|
|||||||
|
|
||||||
Args:
|
Args:
|
||||||
texts: Iterable of strings to add to the vectorstore.
|
texts: Iterable of strings to add to the vectorstore.
|
||||||
metadatas: Optional list of metadatas associated with the texts.
|
metadatas: Optional list of metadata associated with the texts.
|
||||||
ids: Optional list of ids to associate with the texts.
|
ids: Optional list of ids to associate with the texts.
|
||||||
set_name: Optional aerospike set name to add the texts to.
|
set_name: Optional aerospike set name to add the texts to.
|
||||||
batch_size: Batch size to use when adding the texts to the vectorstore.
|
batch_size: Batch size to use when adding the texts to the vectorstore.
|
||||||
|
Reference in New Issue
Block a user