123456789101112131415161718192021222324252627282930313233343536 |
- from typing import Optional
- from embedchain.config.base_config import BaseConfig
- class BaseVectorDbConfig(BaseConfig):
- def __init__(
- self,
- collection_name: Optional[str] = None,
- dir: str = "db",
- host: Optional[str] = None,
- port: Optional[str] = None,
- **kwargs,
- ):
- """
- Initializes a configuration class instance for the vector database.
- :param collection_name: Default name for the collection, defaults to None
- :type collection_name: Optional[str], optional
- :param dir: Path to the database directory, where the database is stored, defaults to "db"
- :type dir: str, optional
- :param host: Database connection remote host. Use this if you run Embedchain as a client, defaults to None
- :type host: Optional[str], optional
- :param host: Database connection remote port. Use this if you run Embedchain as a client, defaults to None
- :type port: Optional[str], optional
- :param kwargs: Additional keyword arguments
- :type kwargs: dict
- """
- self.collection_name = collection_name or "embedchain_store"
- self.dir = dir
- self.host = host
- self.port = port
- # Assign additional keyword arguments
- if kwargs:
- for key, value in kwargs.items():
- setattr(self, key, value)
|