Skip to content

Commit 2b9df2d

Browse files
author
ajosh0504
committed
Clearing outputs
1 parent 3c0829a commit 2b9df2d

File tree

1 file changed

+7
-30
lines changed

1 file changed

+7
-30
lines changed

labs/ai-agents-lab.ipynb

Lines changed: 7 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,12 @@
3333
},
3434
{
3535
"cell_type": "code",
36-
"execution_count": 3,
37-
"metadata": {},
38-
"outputs": [
39-
{
40-
"data": {
41-
"text/plain": [
42-
"{'ok': 1.0,\n",
43-
" '$clusterTime': {'clusterTime': Timestamp(1756399876, 1),\n",
44-
" 'signature': {'hash': b'\\x9f\\xf1\\x19\\xff\\x01\\xc2[$\\x90\\xbfB\\x10\\xb3S\\xfc\\xb8%\\\\\\x1b\\x9a',\n",
45-
" 'keyId': 7488036371156697090}},\n",
46-
" 'operationTime': Timestamp(1756399876, 1)}"
47-
]
48-
},
49-
"execution_count": 3,
50-
"metadata": {},
51-
"output_type": "execute_result"
52-
}
53-
],
36+
"execution_count": null,
37+
"metadata": {},
38+
"outputs": [],
5439
"source": [
5540
"# If you are using your own MongoDB Atlas cluster, use the connection string for your cluster here\n",
56-
"MONGODB_URI = \"mongodb+srv://apoorvajoshi:[email protected]/?retryWrites=true&w=majority&appName=Cluster2\"\n",
41+
"MONGODB_URI = os.environ.get(\"MONGODB_URI\")\n",
5742
"# Initialize a MongoDB Python client\n",
5843
"mongodb_client = MongoClient(MONGODB_URI)\n",
5944
"# Check the connection to the server\n",
@@ -62,17 +47,9 @@
6247
},
6348
{
6449
"cell_type": "code",
65-
"execution_count": 4,
66-
"metadata": {},
67-
"outputs": [
68-
{
69-
"name": "stdout",
70-
"output_type": "stream",
71-
"text": [
72-
"Tracking progress for task cluster_creation\n"
73-
]
74-
}
75-
],
50+
"execution_count": null,
51+
"metadata": {},
52+
"outputs": [],
7653
"source": [
7754
"# Track progress of key steps-- DO NOT CHANGE\n",
7855
"track_progress(\"cluster_creation\", \"ai_agents_lab\")"

0 commit comments

Comments
 (0)