feat: restore rag dataset management and linkage

This commit is contained in:
wren
2026-05-11 17:21:33 +08:00
parent da2bb8310d
commit dcc0f3c30d
6 changed files with 2208 additions and 46 deletions
@@ -0,0 +1,6 @@
from pydantic import BaseModel, Field
class RagDatasetUpdateDTO(BaseModel):
name: str | None = Field(None, min_length=1, max_length=255)
retrieval_model: dict | None = Field(None)