mirror of https://github.com/langgenius/dify.git
14 lines
330 B
Python
14 lines
330 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class DocumentTask:
|
|
"""Document task entity for document indexing operations.
|
|
|
|
This class represents a document indexing task that can be queued
|
|
and processed by the document indexing system.
|
|
"""
|
|
tenant_id: str
|
|
dataset_id: str
|
|
document_ids: list[str]
|