mirror of
https://github.com/langgenius/dify.git
synced 2025-07-23 01:22:45 +00:00
11 lines
226 B
Python
11 lines
226 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class SegmentUpdateEntity(BaseModel):
|
||
|
content: str
|
||
|
answer: Optional[str] = None
|
||
|
keywords: Optional[list[str]] = None
|
||
|
enabled: Optional[bool] = None
|