Update notebooks to use dict instead of yaml and remove dataloaders (#1075)

This commit is contained in:
Sidharth Mohanty
2023-12-29 21:57:46 +05:30
committed by GitHub
parent 904baac153
commit 6df63d9ca7
16 changed files with 230 additions and 554 deletions

View File

@@ -26,7 +26,7 @@
},
"outputs": [],
"source": [
"!pip install embedchain[dataloaders]"
"!pip install embedchain"
]
},
{
@@ -54,47 +54,13 @@
"os.environ[\"OPENAI_API_KEY\"] = \"sk-xxx\""
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Ns6RhPfbiitr"
},
"source": [
"### Step-3: Define your Vector Database config"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "S9CkxVjriotB"
},
"outputs": [],
"source": [
"config = \"\"\"\n",
"vectordb:\n",
" provider: chroma\n",
" config:\n",
" collection_name: 'my-collection'\n",
" # CHANGE THE BELOW TWO LINES!\n",
" # pass remote database variables - host and port\n",
" host: your-chromadb-url.com\n",
" port: 5200\n",
" allow_reset: true\n",
"\"\"\"\n",
"\n",
"# Write the multi-line string to a YAML file\n",
"with open('chromadb.yaml', 'w') as file:\n",
" file.write(config)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "PGt6uPLIi1CS"
},
"source": [
"### Step-4 Create embedchain app based on the config"
"### Step-3 Create embedchain app and define your config"
]
},
{
@@ -105,7 +71,15 @@
},
"outputs": [],
"source": [
"app = App.from_config(config_path=\"chromadb.yaml\")"
"app = App.from_config(config={\n",
" \"provider\": \"chroma\",\n",
" \"config\": {\n",
" \"collection_name\": \"my-collection\",\n",
" \"host\": \"your-chromadb-url.com\",\n",
" \"port\": 5200,\n",
" \"allow_reset\": True\n",
" }\n",
"})"
]
},
{
@@ -114,7 +88,7 @@
"id": "XNXv4yZwi7ef"
},
"source": [
"### Step-5: Add data sources to your app"
"### Step-4: Add data sources to your app"
]
},
{
@@ -134,7 +108,7 @@
"id": "_7W6fDeAjMAP"
},
"source": [
"### Step-6: All set. Now start asking questions related to your data"
"### Step-5: All set. Now start asking questions related to your data"
]
},
{