Co-authored-by: Charles Packer <packercharles@gmail.com> Co-authored-by: Shubham Naik <shubham.naik10@gmail.com> Co-authored-by: Shubham Naik <shub@memgpt.ai>
22 lines
745 B
Python
22 lines
745 B
Python
from typing import Dict, Optional
|
|
|
|
from pydantic import Field
|
|
|
|
from letta.schemas.letta_base import LettaBase
|
|
|
|
|
|
class DocumentBase(LettaBase):
|
|
"""Base class for document schemas"""
|
|
|
|
__id_prefix__ = "doc"
|
|
|
|
|
|
class Document(DocumentBase):
|
|
"""Representation of a single document (broken up into `Passage` objects)"""
|
|
|
|
id: str = DocumentBase.generate_id_field()
|
|
text: str = Field(..., description="The text of the document.")
|
|
source_id: str = Field(..., description="The unique identifier of the source associated with the document.")
|
|
user_id: str = Field(description="The unique identifier of the user associated with the document.")
|
|
metadata_: Optional[Dict] = Field({}, description="The metadata of the document.")
|