mirror of
https://github.com/langgenius/dify.git
synced 2025-12-05 07:14:13 +00:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
16 lines
368 B
Python
16 lines
368 B
Python
from collections.abc import Sequence
|
|
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: Sequence[str]
|