We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc679e commit 84c5baeCopy full SHA for 84c5bae
docs/docs/integrations/vectorstores/aerospike.ipynb
@@ -29,8 +29,8 @@
29
"metadata": {},
30
"outputs": [],
31
"source": [
32
- "PROXIMUS_HOST = \"<avs-ip>\"\n",
33
- "PROXIMUS_PORT = 5000"
+ "AVS_HOST = \"<avs-ip>\"\n",
+ "AVS_PORT = 5000"
34
]
35
},
36
{
@@ -369,7 +369,7 @@
369
"from langchain_community.vectorstores import Aerospike\n",
370
"\n",
371
"# Here we are using the AVS host and port you configured earlier\n",
372
- "seed = HostPort(host=PROXIMUS_HOST, port=PROXIMUS_PORT)\n",
+ "seed = HostPort(host=AVS_HOST, port=AVS_PORT)\n",
373
374
"# The namespace of where to place our vectors. This should match the vector configured in your docstore.conf file.\n",
375
"NAMESPACE = \"test\"\n",
0 commit comments