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: ChromaDB |
| #3 | --- |
| #4 | |
| #5 | <CodeGroup> |
| #6 | |
| #7 | ```python main.py |
| #8 | from embedchain import App |
| #9 | |
| #10 | # load chroma configuration from yaml file |
| #11 | app = App.from_config(config_path="config1.yaml") |
| #12 | ``` |
| #13 | |
| #14 | ```yaml config1.yaml |
| #15 | vectordb: |
| #16 | provider: chroma |
| #17 | config: |
| #18 | collection_name: 'my-collection' |
| #19 | dir: db |
| #20 | allow_reset: true |
| #21 | ``` |
| #22 | |
| #23 | ```yaml config2.yaml |
| #24 | vectordb: |
| #25 | provider: chroma |
| #26 | config: |
| #27 | collection_name: 'my-collection' |
| #28 | host: localhost |
| #29 | port: 5200 |
| #30 | allow_reset: true |
| #31 | ``` |
| #32 | |
| #33 | </CodeGroup> |
| #34 | |
| #35 | <Snippet file="missing-vector-db-tip.mdx" /> |
| #36 |