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: Zilliz |
| #3 | --- |
| #4 | |
| #5 | Install related dependencies using the following command: |
| #6 | |
| #7 | ```bash |
| #8 | pip install --upgrade 'embedchain[milvus]' |
| #9 | ``` |
| #10 | |
| #11 | Set the Zilliz environment variables `ZILLIZ_CLOUD_URI` and `ZILLIZ_CLOUD_TOKEN` which you can find it on their [cloud platform](https://cloud.zilliz.com/). |
| #12 | |
| #13 | <CodeGroup> |
| #14 | |
| #15 | ```python main.py |
| #16 | import os |
| #17 | from embedchain import App |
| #18 | |
| #19 | os.environ['ZILLIZ_CLOUD_URI'] = 'https://xxx.zillizcloud.com' |
| #20 | os.environ['ZILLIZ_CLOUD_TOKEN'] = 'xxx' |
| #21 | |
| #22 | # load zilliz configuration from yaml file |
| #23 | app = App.from_config(config_path="config.yaml") |
| #24 | ``` |
| #25 | |
| #26 | ```yaml config.yaml |
| #27 | vectordb: |
| #28 | provider: zilliz |
| #29 | config: |
| #30 | collection_name: 'zilliz_app' |
| #31 | uri: https://xxxx.api.gcp-region.zillizcloud.com |
| #32 | token: xxx |
| #33 | vector_dim: 1536 |
| #34 | metric_type: L2 |
| #35 | ``` |
| #36 | |
| #37 | </CodeGroup> |
| #38 | |
| #39 | <Snippet file="missing-vector-db-tip.mdx" /> |
| #40 |