Langchain-Chatchat/server/knowledge_base/model/kb_document_model.py

11 lines
148 B
Python
Raw Normal View History

from langchain.docstore.document import Document
class DocumentWithVSId(Document):
"""
矢量化后的文档
"""
id: str = None