Skip to content

Commit 6f52772

Browse files
feat(api): api update
1 parent 904a1b9 commit 6f52772

File tree

6 files changed

+26
-1
lines changed

6 files changed

+26
-1
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
configured_endpoints: 56
2-
openapi_spec_hash: 80b1836ebec22fc0dc25d5d8efe62a50
2+
openapi_spec_hash: 0f9ec74cbe1e9972d20ea57aded46fb9
33
config_hash: 9e0ed146f9f6e6d1884a4c0589d6f1c2

src/codex/types/projects/query_log_list_by_group_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,9 @@ class QueryLogsByGroupQueryLog(BaseModel):
416416
ai_guidance_id: Optional[str] = None
417417
"""ID of the AI guidance remediation that was created from this query log."""
418418

419+
applied_expert_answer_id: Optional[str] = None
420+
"""ID of the expert answer that was applied to the query."""
421+
419422
context: Optional[List[QueryLogsByGroupQueryLogContext]] = None
420423
"""RAG context used for the query"""
421424

@@ -491,6 +494,8 @@ class QueryLogsByGroupQueryLog(BaseModel):
491494
the highest priority
492495
"""
493496

497+
issue_id: Optional[str] = None
498+
494499
manual_review_status_override: Optional[Literal["addressed", "unaddressed"]] = None
495500
"""Manual review status override for remediations."""
496501

src/codex/types/projects/query_log_list_groups_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,9 @@ class QueryLogListGroupsResponse(BaseModel):
411411
ai_guidance_id: Optional[str] = None
412412
"""ID of the AI guidance remediation that was created from this query log."""
413413

414+
applied_expert_answer_id: Optional[str] = None
415+
"""ID of the expert answer that was applied to the query."""
416+
414417
context: Optional[List[Context]] = None
415418
"""RAG context used for the query"""
416419

@@ -486,6 +489,8 @@ class QueryLogListGroupsResponse(BaseModel):
486489
the highest priority
487490
"""
488491

492+
issue_id: Optional[str] = None
493+
489494
manual_review_status_override: Optional[Literal["addressed", "unaddressed"]] = None
490495
"""Manual review status override for remediations."""
491496

src/codex/types/projects/query_log_list_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,9 @@ class QueryLogListResponse(BaseModel):
399399
ai_guidance_id: Optional[str] = None
400400
"""ID of the AI guidance remediation that was created from this query log."""
401401

402+
applied_expert_answer_id: Optional[str] = None
403+
"""ID of the expert answer that was applied to the query."""
404+
402405
context: Optional[List[Context]] = None
403406
"""RAG context used for the query"""
404407

@@ -474,6 +477,8 @@ class QueryLogListResponse(BaseModel):
474477
the highest priority
475478
"""
476479

480+
issue_id: Optional[str] = None
481+
477482
messages: Optional[List[Message]] = None
478483
"""Message history to provide conversation context for the query.
479484

src/codex/types/projects/query_log_retrieve_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,9 @@ class QueryLogRetrieveResponse(BaseModel):
403403
ai_guidance_id: Optional[str] = None
404404
"""ID of the AI guidance remediation that was created from this query log."""
405405

406+
applied_expert_answer_id: Optional[str] = None
407+
"""ID of the expert answer that was applied to the query."""
408+
406409
context: Optional[List[Context]] = None
407410
"""RAG context used for the query"""
408411

@@ -478,6 +481,8 @@ class QueryLogRetrieveResponse(BaseModel):
478481
the highest priority
479482
"""
480483

484+
issue_id: Optional[str] = None
485+
481486
manual_review_status_override: Optional[Literal["addressed", "unaddressed"]] = None
482487
"""Manual review status override for remediations."""
483488

src/codex/types/projects/remediation_list_resolved_logs_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,9 @@ class QueryLog(BaseModel):
406406
ai_guidance_id: Optional[str] = None
407407
"""ID of the AI guidance remediation that was created from this query log."""
408408

409+
applied_expert_answer_id: Optional[str] = None
410+
"""ID of the expert answer that was applied to the query."""
411+
409412
context: Optional[List[QueryLogContext]] = None
410413
"""RAG context used for the query"""
411414

@@ -481,6 +484,8 @@ class QueryLog(BaseModel):
481484
the highest priority
482485
"""
483486

487+
issue_id: Optional[str] = None
488+
484489
messages: Optional[List[QueryLogMessage]] = None
485490
"""Message history to provide conversation context for the query.
486491

0 commit comments

Comments
 (0)