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 | from typing import Optional |
| #2 | |
| #3 | from embedchain.config.vector_db.base import BaseVectorDbConfig |
| #4 | from embedchain.helpers.json_serializable import register_deserializable |
| #5 | |
| #6 | |
| #7 | @register_deserializable |
| #8 | class WeaviateDBConfig(BaseVectorDbConfig): |
| #9 | def __init__( |
| #10 | self, |
| #11 | collection_name: Optional[str] = None, |
| #12 | dir: Optional[str] = None, |
| #13 | batch_size: Optional[int] = 100, |
| #14 | **extra_params: dict[str, any], |
| #15 | ): |
| #16 | self.batch_size = batch_size |
| #17 | self.extra_params = extra_params |
| #18 | super().__init__(collection_name=collection_name, dir=dir) |
| #19 |