Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vedang4u
/
aivre
like
1
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
main
aivre
/
app
/
core
/
models.py
Vedang Barhate
chore: copied from assist repo
cfc8e23
2 months ago
raw
Copy download link
history
blame
Safe
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
]