|
33 | 33 | }, |
34 | 34 | { |
35 | 35 | "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": [], |
54 | 39 | "source": [ |
55 | 40 | "# 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", |
57 | 42 | "# Initialize a MongoDB Python client\n", |
58 | 43 | "mongodb_client = MongoClient(MONGODB_URI)\n", |
59 | 44 | "# Check the connection to the server\n", |
|
62 | 47 | }, |
63 | 48 | { |
64 | 49 | "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": [], |
76 | 53 | "source": [ |
77 | 54 | "# Track progress of key steps-- DO NOT CHANGE\n", |
78 | 55 | "track_progress(\"cluster_creation\", \"ai_agents_lab\")" |
|
0 commit comments