mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-12 04:16:54 +08: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
|