From 1b8dd4489fcc146aa3546deb67b1a734ce931fec Mon Sep 17 00:00:00 2001 From: anindyam1969 Date: Tue, 5 Nov 2024 20:58:32 +0530 Subject: [PATCH] Minor changes --- docs/docs/integrations/vectorstores/kinetica.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/integrations/vectorstores/kinetica.ipynb b/docs/docs/integrations/vectorstores/kinetica.ipynb index 1ec0cd8bfaa47..fe474aa0d74a5 100644 --- a/docs/docs/integrations/vectorstores/kinetica.ipynb +++ b/docs/docs/integrations/vectorstores/kinetica.ipynb @@ -39,7 +39,7 @@ "source": [ "# Pip install necessary package\n", "%pip install --upgrade --quiet langchain-openai langchain-community\n", - "%pip install gpudb\n", + "%pip install gpudb>=7.2.2.0 \n", "%pip install --upgrade --quiet tiktoken" ] }, @@ -112,15 +112,15 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Kinetica needs the connection to the database.\n", "# This is how to set it up.\n", "HOST = os.getenv(\"KINETICA_HOST\", \"http://127.0.0.1:9191\")\n", - "USERNAME = os.getenv(\"KINETICA_USERNAME\", \"admin\")\n", - "PASSWORD = os.getenv(\"KINETICA_PASSWORD\", \"Kinetica1!\")\n", + "USERNAME = os.getenv(\"KINETICA_USERNAME\", \"\")\n", + "PASSWORD = os.getenv(\"KINETICA_PASSWORD\", \"\")\n", "OPENAI_API_KEY = os.getenv(\"OPENAI_API_KEY\", \"\")\n", "\n", "\n",