Skip to content

Commit

Permalink
ML/LLM: Use CrateDB Cloud as the default configuration setting snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jun 18, 2024
1 parent 69477c6 commit 7d21da3
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,17 @@
"outputs": [],
"source": [
"# Define the connection string to running CrateDB instance.\n",
"CONNECTION_STRING = os.environ.get(\n",
" \"CRATEDB_CONNECTION_STRING\",\n",
" \"crate://crate@localhost/?schema=openai\",\n",
")\n",
"\n",
"# Connect to CrateDB Cloud.\n",
"# CONNECTION_STRING = os.environ.get(\n",
"# \"CRATEDB_CONNECTION_STRING\",\n",
"# \"crate://username:password@hostname/?ssl=true&schema=notebook\",\n",
"# \"crate://crate@localhost/?schema=openai\",\n",
"# )\n",
"\n",
"# Connect to CrateDB Cloud.\n",
"CONNECTION_STRING = os.environ.get(\n",
" \"CRATEDB_CONNECTION_STRING\",\n",
" \"crate://username:password@hostname/?ssl=true&schema=notebook\",\n",
")\n",
"\n",
"# Define the store collection to use for this notebook session.\n",
"COLLECTION_NAME = \"customer_data\""
]
Expand Down

0 comments on commit 7d21da3

Please sign in to comment.