Spaces:
Build error
Build error
from pydantic import UUID4, Field | |
from llm_engineering.domain.base import VectorBaseDocument | |
from llm_engineering.domain.types import DataCategory | |
class Query(VectorBaseDocument): | |
content: str | |
author_id: UUID4 | None = None | |
author_full_name: str | None = None | |
metadata: dict = Field(default_factory=dict) | |
class Config: | |
category = DataCategory.QUERIES | |
def from_str(cls, query: str) -> "Query": | |
return Query(content=query.strip("\n ")) | |
def replace_content(self, new_content: str) -> "Query": | |
return Query( | |
id=self.id, | |
content=new_content, | |
author_id=self.author_id, | |
author_full_name=self.author_full_name, | |
metadata=self.metadata, | |
) | |
class EmbeddedQuery(Query): | |
embedding: list[float] | |
class Config: | |
category = DataCategory.QUERIES | |