repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | title: Weaviate |
| #3 | --- |
| #4 | |
| #5 | |
| #6 | In order to use Weaviate as a vector database, set the environment variables `WEAVIATE_ENDPOINT` and `WEAVIATE_API_KEY` which you can find on [Weaviate dashboard](https://console.weaviate.cloud/dashboard). |
| #7 | |
| #8 | <CodeGroup> |
| #9 | ```python main.py |
| #10 | from embedchain import App |
| #11 | |
| #12 | # load weaviate configuration from yaml file |
| #13 | app = App.from_config(config_path="config.yaml") |
| #14 | ``` |
| #15 | |
| #16 | ```yaml config.yaml |
| #17 | vectordb: |
| #18 | provider: weaviate |
| #19 | config: |
| #20 | collection_name: my_weaviate_index |
| #21 | ``` |
| #22 | </CodeGroup> |
| #23 | |
| #24 | <Snippet file="missing-vector-db-tip.mdx" /> |
| #25 |