Skip to content

Commit

Permalink
Fix GCS path variable
Browse files Browse the repository at this point in the history
  • Loading branch information
koverholt committed Nov 12, 2024
1 parent 8bdf932 commit 9637743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemini/reasoning-engine/tutorial_langgraph_rag_agent.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
"\n",
" storage_client = storage.Client()\n",
" bucket = storage_client.bucket(bucket_name)\n",
" blob = bucket.blob(blob_name)\n",
" blob = bucket.blob(f\"{gcs_dir}/{blob_name}\")\n",
"\n",
" if not blob.exists():\n",
" print(f\"File not found: gs://{bucket_name}/{gcs_dir}/{blob_name}\")\n",
Expand Down

0 comments on commit 9637743

Please sign in to comment.