Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
reformat
  • Loading branch information
openvino-dev-samples committed Nov 4, 2024
1 parent 6a17791 commit e09b544
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/multimodal-rag/multimodal-rag-llamaindex.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"id": "2c61cb01-9c46-46e3-bf22-20c4ca0da417",
"metadata": {},
"outputs": [],
Expand All @@ -94,15 +94,15 @@
"\n",
"if not Path(\"ov_phi3_vision_helper.py\").exists():\n",
" r = requests.get(url=\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/latest/notebooks/phi-3-vision/ov_phi3_vision_helper.py\")\n",
" open(\"ov_phi3_vision_helper.py\", \"w\").write(r.text)\n",
" open(\"ov_phi3_vision_helper.py\", \"w\", encoding=\"utf-8\").write(r.text)\n",
"\n",
"if not Path(\"ov_phi3_llamaindex.py\").exists():\n",
" r = requests.get(url=\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/latest/notebooks/multimodal-rag/ov_phi3_llamaindex.py\")\n",
" open(\"ov_phi3_llamaindex.py\", \"w\").write(r.text)\n",
" open(\"ov_phi3_llamaindex.py\", \"w\", encoding=\"utf-8\").write(r.text)\n",
" \n",
"if not Path(\"notebook_utils.py\").exists():\n",
" r = requests.get(url=\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/latest/utils/notebook_utils.py\")\n",
" open(\"notebook_utils.py\", \"w\").write(r.text)"
" open(\"notebook_utils.py\", \"w\", encoding=\"utf-8\").write(r.text)"
]
},
{
Expand Down

0 comments on commit e09b544

Please sign in to comment.