<!-- .github/pull_request_template.md --> ## Description Fix latest pydantic version issues ## Type of Change <!-- Please check the relevant option --> - [ ] Bug fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [ ] Code refactoring - [ ] Performance improvement - [ ] Other (please specify): ## Screenshots/Videos (if applicable) <!-- Add screenshots or videos to help explain your changes --> ## Pre-submission Checklist <!-- Please check all boxes that apply before submitting your PR --> - [ ] **I have tested my changes thoroughly before submitting this PR** - [ ] **This PR contains minimal changes necessary to address the issue/feature** - [ ] My code follows the project's coding standards and style guidelines - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have added necessary documentation (if applicable) - [ ] All new and existing tests pass - [ ] I have searched existing PRs to ensure this change hasn't been submitted already - [ ] I have linked any relevant issues in the description - [ ] My commits have clear and descriptive messages ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
90 lines
2.9 KiB
Python
90 lines
2.9 KiB
Python
import os
|
|
import pydantic
|
|
from pathlib import Path
|
|
from functools import lru_cache
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
from cognee.base_config import get_base_config
|
|
from cognee.root_dir import ensure_absolute_path
|
|
|
|
|
|
class VectorConfig(BaseSettings):
|
|
"""
|
|
Manage the configuration settings for the vector database.
|
|
|
|
Public methods:
|
|
- to_dict: Convert the configuration to a dictionary.
|
|
|
|
Instance variables:
|
|
- vector_db_url: The URL of the vector database.
|
|
- vector_db_port: The port for the vector database.
|
|
- vector_db_key: The key for accessing the vector database.
|
|
- vector_db_provider: The provider for the vector database.
|
|
"""
|
|
|
|
vector_db_url: str = ""
|
|
vector_db_port: int = 1234
|
|
vector_db_key: str = ""
|
|
vector_db_provider: str = "lancedb"
|
|
|
|
model_config = SettingsConfigDict(env_file=".env", extra="allow")
|
|
|
|
@pydantic.model_validator(mode="after")
|
|
def validate_paths(self):
|
|
base_config = get_base_config()
|
|
|
|
# If vector_db_url is provided and is not a path skip checking if path is absolute (as it can also be a url)
|
|
if self.vector_db_url and Path(self.vector_db_url).exists():
|
|
# Relative path to absolute
|
|
self.vector_db_url = ensure_absolute_path(
|
|
self.vector_db_url,
|
|
)
|
|
elif not self.vector_db_url:
|
|
# Default path
|
|
databases_directory_path = os.path.join(base_config.system_root_directory, "databases")
|
|
self.vector_db_url = os.path.join(databases_directory_path, "cognee.lancedb")
|
|
|
|
return self
|
|
|
|
def to_dict(self) -> dict:
|
|
"""
|
|
Convert the configuration settings to a dictionary.
|
|
|
|
Returns:
|
|
--------
|
|
|
|
- dict: A dictionary containing the vector database configuration settings.
|
|
"""
|
|
return {
|
|
"vector_db_url": self.vector_db_url,
|
|
"vector_db_port": self.vector_db_port,
|
|
"vector_db_key": self.vector_db_key,
|
|
"vector_db_provider": self.vector_db_provider,
|
|
}
|
|
|
|
|
|
@lru_cache
|
|
def get_vectordb_config():
|
|
"""
|
|
Retrieve the cached vector database configuration.
|
|
|
|
This function uses the LRU cache to store the instance of `VectorConfig`, allowing for
|
|
efficient reuse without needing to recreate the object multiple times. If a
|
|
configuration is already cached, it returns that instead of creating a new one.
|
|
|
|
Returns:
|
|
--------
|
|
|
|
- VectorConfig: An instance of `VectorConfig` containing the vector database
|
|
configuration.
|
|
"""
|
|
return VectorConfig()
|
|
|
|
|
|
def get_vectordb_context_config():
|
|
"""This function will get the appropriate vector db config based on async context."""
|
|
from cognee.context_global_variables import vector_db_config
|
|
|
|
if vector_db_config.get():
|
|
return vector_db_config.get()
|
|
return get_vectordb_config().to_dict()
|