mirror of
https://github.com/langgenius/dify.git
synced 2025-07-12 11:40:59 +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
|