mirror of
https://github.com/langgenius/dify.git
synced 2025-07-11 03:00:26 +00:00
11 lines
156 B
Python
11 lines
156 B
Python
![]() |
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class DocumentContext(BaseModel):
|
||
|
"""
|
||
|
Model class for document context.
|
||
|
"""
|
||
|
|
||
|
content: str
|
||
|
score: float
|