mirror of
https://github.com/langgenius/dify.git
synced 2025-12-19 17:27:16 -05:00
23 lines
502 B
Python
23 lines
502 B
Python
from pydantic import BaseModel
|
|
|
|
from models.dataset import DocumentSegment
|
|
|
|
|
|
class RetrievalChildChunk(BaseModel):
|
|
"""Retrieval segments."""
|
|
|
|
id: str
|
|
content: str
|
|
score: float
|
|
position: int
|
|
|
|
|
|
class RetrievalSegments(BaseModel):
|
|
"""Retrieval segments."""
|
|
|
|
model_config = {"arbitrary_types_allowed": True}
|
|
segment: DocumentSegment
|
|
child_chunks: list[RetrievalChildChunk] | None = None
|
|
score: float | None = None
|
|
files: list[dict[str, str | int]] | None = None
|