docs: app config instead of init config (#308)
This commit is contained in:
@@ -34,13 +34,13 @@
|
||||
"source": [
|
||||
"import os\n",
|
||||
"from embedchain import App\n",
|
||||
"from embedchain.config import InitConfig\n",
|
||||
"from embedchain.config import AppConfig\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"chromadb_host = \"localhost\"\n",
|
||||
"chromadb_port = 8000\n",
|
||||
"\n",
|
||||
"config = InitConfig(host=chromadb_host, port=chromadb_port)\n",
|
||||
"config = AppConfig(host=chromadb_host, port=chromadb_port)\n",
|
||||
"elon_bot = App(config)"
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user