diff --git a/notebooks/Granite_Multimodal_RAG.ipynb b/notebooks/Granite_Multimodal_RAG.ipynb index 164efc8..742c7d6 100644 --- a/notebooks/Granite_Multimodal_RAG.ipynb +++ b/notebooks/Granite_Multimodal_RAG.ipynb @@ -123,7 +123,7 @@ "source": [ "! echo \"::group::Install Dependencies\"\n", "%pip install uv\n", - "! uv pip install git+https://github.com/ibm-granite-community/utils.git \\\n", + "! uv pip install \"git+https://github.com/ibm-granite-community/utils.git\" \\\n", " transformers \\\n", " pillow \\\n", " langchain_classic \\\n", @@ -131,7 +131,7 @@ " langchain_huggingface sentence_transformers \\\n", " langchain_chroma chromadb \\\n", " docling \\\n", - " 'langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git'\n", + " \"langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git\"\n", "! echo \"::endgroup::\"" ] }, diff --git a/notebooks/RAG_with_Langchain.ipynb b/notebooks/RAG_with_Langchain.ipynb index 65744a6..3b16206 100644 --- a/notebooks/RAG_with_Langchain.ipynb +++ b/notebooks/RAG_with_Langchain.ipynb @@ -84,7 +84,7 @@ "source": [ "! echo \"::group::Install Dependencies\"\n", "%pip install uv\n", - "! uv pip install git+https://github.com/ibm-granite-community/utils.git \\\n", + "! uv pip install \"git+https://github.com/ibm-granite-community/utils.git\" \\\n", " transformers \\\n", " langchain_classic \\\n", " langchain_community \\\n", @@ -92,7 +92,7 @@ " langchain_huggingface sentence_transformers \\\n", " langchain_ollama \\\n", " langchain_chroma chromadb \\\n", - " 'langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git' \\\n", + " \"langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git\" \\\n", " wget\n", "! echo \"::endgroup::\"" ] diff --git a/notebooks/Summarize.ipynb b/notebooks/Summarize.ipynb index 997e8b3..de79803 100644 --- a/notebooks/Summarize.ipynb +++ b/notebooks/Summarize.ipynb @@ -44,10 +44,10 @@ "source": [ "! echo \"::group::Install Dependencies\"\n", "%pip install uv\n", - "! uv pip install git+https://github.com/ibm-granite-community/utils.git \\\n", + "! uv pip install \"git+https://github.com/ibm-granite-community/utils.git\" \\\n", " transformers \\\n", " langchain_ollama \\\n", - " 'langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git' \\\n", + " \"langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git\" \\\n", " docling\n", "! echo \"::endgroup::\"" ] diff --git a/notebooks/entity_extraction.ipynb b/notebooks/entity_extraction.ipynb index 59ed553..7108dcd 100644 --- a/notebooks/entity_extraction.ipynb +++ b/notebooks/entity_extraction.ipynb @@ -29,11 +29,11 @@ "source": [ "! echo \"::group::Install Dependencies\"\n", "%pip install uv\n", - "! uv pip install git+https://github.com/ibm-granite-community/utils.git \\\n", + "! uv pip install \"git+https://github.com/ibm-granite-community/utils.git\" \\\n", " transformers \\\n", " langchain_core \\\n", " langchain_ollama \\\n", - " 'langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git' \\\n", + " \"langchain_replicate @ git+https://github.com/ibm-granite-community/langchain-replicate.git\" \\\n", " pydantic\n", "! echo \"::endgroup::\"" ]