aivre / app /core /models.py
Vedang Barhate
chore: copied from assist repo
cfc8e23
raw
history blame
212 Bytes
from dataclasses import dataclass
from typing import Any
@dataclass
class KnowledgeDocument:
"""Represents a single document or chunk in the knowledge base"""
content: str
metadata: dict[str, Any]