Che237 commited on
Commit
0242071
·
verified ·
1 Parent(s): ecec503

FIX: Remove backslash from f-string to fix SyntaxError

Browse files
notebooks/00_environment_setup.ipynb CHANGED
@@ -289,7 +289,8 @@
289
  "print(\"API CONFIGURATION STATUS\")\n",
290
  "print(\"=\" * 60)\n",
291
  "print(f\" Gemini API Key: {'✓ Set' if config.GEMINI_API_KEY else '✗ Missing'}\")\n",
292
- "print(f\" HuggingFace Token: {'✓ Set' if config.HUGGINGFACE_TOKEN else '⚠ Not set (models won\\\\'t upload)'}\")\n",
 
293
  "print(f\" Gemini Model: {config.GEMINI_MODEL}\")\n",
294
  "print(f\" HF Model Repo: {config.HF_REPO}\")\n",
295
  "print(f\" Device: {config.DEVICE}\")\n"
 
289
  "print(\"API CONFIGURATION STATUS\")\n",
290
  "print(\"=\" * 60)\n",
291
  "print(f\" Gemini API Key: {'✓ Set' if config.GEMINI_API_KEY else '✗ Missing'}\")\n",
292
+ "hf_status = '✓ Set' if config.HUGGINGFACE_TOKEN else '⚠ Not set (models will not upload)'\n",
293
+ "print(f\" HuggingFace Token: {hf_status}\")\n",
294
  "print(f\" Gemini Model: {config.GEMINI_MODEL}\")\n",
295
  "print(f\" HF Model Repo: {config.HF_REPO}\")\n",
296
  "print(f\" Device: {config.DEVICE}\")\n"