Coevolution workplan extension
This commit is contained in:
parent
c070951c68
commit
31dd6259b5
8 changed files with 200 additions and 6 deletions
|
|
@ -203,6 +203,8 @@ class EvidenceUpdate(BaseModel):
|
|||
class AnalysisRunCreate(BaseModel):
|
||||
source_path: str | None = None
|
||||
use_cached_checkout: bool = False
|
||||
use_llm_assistance: bool = True
|
||||
trusted_auto_approve: bool = False
|
||||
access_username: str | None = None
|
||||
access_password: str | None = Field(default=None, repr=False)
|
||||
|
||||
|
|
@ -212,6 +214,8 @@ class AnalysisRunCreate(BaseModel):
|
|||
{},
|
||||
{"source_path": "/path/to/local/repository"},
|
||||
{"use_cached_checkout": True},
|
||||
{"use_llm_assistance": False},
|
||||
{"trusted_auto_approve": True},
|
||||
{
|
||||
"access_username": "git-user",
|
||||
"access_password": "access-token",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue