Route auto review requests to agentic review
This commit is contained in:
parent
9fa1d9e9b5
commit
8f484cd855
15 changed files with 208 additions and 47 deletions
|
|
@ -214,7 +214,20 @@ class AnalysisRunCreate(BaseModel):
|
|||
source_path: str | None = None
|
||||
use_cached_checkout: bool = False
|
||||
use_llm_assistance: bool = True
|
||||
trusted_auto_approve: bool = False
|
||||
agentic_review: bool = Field(
|
||||
default=False,
|
||||
description=(
|
||||
"Request configured agentic review after analysis; candidates remain "
|
||||
"pending when no reviewer is configured."
|
||||
),
|
||||
)
|
||||
trusted_auto_approve: bool = Field(
|
||||
default=False,
|
||||
description=(
|
||||
"Deprecated compatibility input. Requests are routed to agentic "
|
||||
"review and do not deterministically approve candidates."
|
||||
),
|
||||
)
|
||||
access_username: str | None = None
|
||||
access_password: str | None = Field(default=None, repr=False)
|
||||
|
||||
|
|
@ -225,7 +238,7 @@ class AnalysisRunCreate(BaseModel):
|
|||
{"source_path": "/path/to/local/repository"},
|
||||
{"use_cached_checkout": True},
|
||||
{"use_llm_assistance": False},
|
||||
{"trusted_auto_approve": True},
|
||||
{"agentic_review": True},
|
||||
{
|
||||
"access_username": "git-user",
|
||||
"access_password": "access-token",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue