Skip to content

Commit bc10c1d

Browse files
committed
add missing Authenticate() call
1 parent 5e5cc76 commit bc10c1d

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

learn/experimental/merge-namespaces/merge-namespaces.ipynb

+20-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,17 @@
3232
"%pip install -qU pinecone-notebooks pinecone-client[grpc]"
3333
]
3434
},
35+
{
36+
"cell_type": "code",
37+
"execution_count": null,
38+
"metadata": {},
39+
"outputs": [],
40+
"source": [
41+
"from pinecone_notebooks.colab import Authenticate\n",
42+
"\n",
43+
"Authenticate()"
44+
]
45+
},
3546
{
3647
"cell_type": "code",
3748
"execution_count": null,
@@ -70,7 +81,8 @@
7081
" namespace=namespace,\n",
7182
" vector=random_vecs,\n",
7283
" top_k=count,\n",
73-
" include_values=True\n",
84+
" include_values=True,\n",
85+
" include_metadata=True\n",
7486
" )\n",
7587
" return response['matches']\n",
7688
"\n",
@@ -131,8 +143,14 @@
131143
}
132144
],
133145
"metadata": {
146+
"kernelspec": {
147+
"display_name": "Python 3",
148+
"language": "python",
149+
"name": "python3"
150+
},
134151
"language_info": {
135-
"name": "python"
152+
"name": "python",
153+
"version": "3.11.6"
136154
}
137155
},
138156
"nbformat": 4,

0 commit comments

Comments
 (0)