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