AI Researcher and Video Studio implementation complete

This commit is contained in:
ajaysi
2026-01-05 15:49:51 +05:30
parent b134e9dc7e
commit 0b63ae7fc1
200 changed files with 39535 additions and 1375 deletions

View File

@@ -230,6 +230,14 @@ class ResearchIntent(BaseModel):
le=1.0,
description="Confidence in the intent inference"
)
confidence_reason: Optional[str] = Field(
None,
description="Reason for the confidence level"
)
great_example: Optional[str] = Field(
None,
description="Example of what a great input would look like (if confidence is low)"
)
needs_clarification: bool = Field(
False,
description="True if AI is uncertain and needs user clarification"
@@ -281,6 +289,8 @@ class IntentInferenceResponse(BaseModel):
default_factory=list,
description="Quick options for user to confirm/modify intent"
)
confidence_reason: Optional[str] = Field(None, description="Reason for confidence level")
great_example: Optional[str] = Field(None, description="Example of great input (if confidence is low)")
# ============================================================================