This commit is contained in:
team3
2026-07-06 14:44:20 +02:00
parent f4c5116abb
commit cc27e53b9e
20 changed files with 504 additions and 267 deletions

View File

@@ -46,7 +46,7 @@ class BlocksCreateRequest(BaseModel):
instructions: str = Field(default="", max_length=2000)
provider: ProviderType = DEFAULT_PROVIDER
source_type: SourceType = "thema"
source_location: str = Field(default="", max_length=2000)
source_location: str = Field(default="", max_length=20000) # link mode: one URL per line
research: bool = True # False = Continue: drain the existing kanban queue, no new search
qa_force: bool = False # True = übersteuert ein pausierendes QA-Gate („Trotzdem fortsetzen")
@@ -97,7 +97,7 @@ class FolderResponse(BaseModel):
class BlocksSourceUpdate(BaseModel):
topic: str = Field(min_length=1, max_length=100)
type: SourceType = "thema"
location: str = Field(default="", max_length=2000)
location: str = Field(default="", max_length=20000) # link mode: one URL per line
spec: str = Field(default="", max_length=2000)