Skip to content

Commit 5848aac

Browse files
feat(api): api update
1 parent 26b26c7 commit 5848aac

File tree

6 files changed

+31
-1
lines changed

6 files changed

+31
-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: 65
2-
openapi_spec_hash: d273ca5158facc1251efa0a5f9e723c5
2+
openapi_spec_hash: 9018ebfb2a9e1afa87058b3a4bd41b0b
33
config_hash: cd9208a2204f43e0aa5ab35ac85ef90d

src/codex/types/projects/query_log_list_by_group_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,9 @@ class QueryLogsByGroupQueryLog(BaseModel):
419419
applied_expert_answer_id: Optional[str] = None
420420
"""ID of the expert answer that was applied to the query."""
421421

422+
applied_expert_review_id: Optional[str] = None
423+
"""ID of the expert review that was applied to the query."""
424+
422425
context: Optional[List[QueryLogsByGroupQueryLogContext]] = None
423426
"""RAG context used for the query"""
424427

@@ -479,6 +482,9 @@ class QueryLogsByGroupQueryLog(BaseModel):
479482
expert_review_explanation: Optional[str] = None
480483
"""Expert explanation when marked as bad"""
481484

485+
expert_review_id: Optional[str] = None
486+
"""ID of the expert review that was created for the query."""
487+
482488
expert_review_status: Optional[Literal["good", "bad"]] = None
483489
"""Expert review status: 'good' or 'bad'"""
484490

src/codex/types/projects/query_log_list_groups_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,9 @@ class QueryLogListGroupsResponse(BaseModel):
414414
applied_expert_answer_id: Optional[str] = None
415415
"""ID of the expert answer that was applied to the query."""
416416

417+
applied_expert_review_id: Optional[str] = None
418+
"""ID of the expert review that was applied to the query."""
419+
417420
context: Optional[List[Context]] = None
418421
"""RAG context used for the query"""
419422

@@ -474,6 +477,9 @@ class QueryLogListGroupsResponse(BaseModel):
474477
expert_review_explanation: Optional[str] = None
475478
"""Expert explanation when marked as bad"""
476479

480+
expert_review_id: Optional[str] = None
481+
"""ID of the expert review that was created for the query."""
482+
477483
expert_review_status: Optional[Literal["good", "bad"]] = None
478484
"""Expert review status: 'good' or 'bad'"""
479485

src/codex/types/projects/query_log_list_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,9 @@ class QueryLogListResponse(BaseModel):
402402
applied_expert_answer_id: Optional[str] = None
403403
"""ID of the expert answer that was applied to the query."""
404404

405+
applied_expert_review_id: Optional[str] = None
406+
"""ID of the expert review that was applied to the query."""
407+
405408
context: Optional[List[Context]] = None
406409
"""RAG context used for the query"""
407410

@@ -462,6 +465,9 @@ class QueryLogListResponse(BaseModel):
462465
expert_review_explanation: Optional[str] = None
463466
"""Expert explanation when marked as bad"""
464467

468+
expert_review_id: Optional[str] = None
469+
"""ID of the expert review that was created for the query."""
470+
465471
expert_review_status: Optional[Literal["good", "bad"]] = None
466472
"""Expert review status: 'good' or 'bad'"""
467473

src/codex/types/projects/query_log_retrieve_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,9 @@ class QueryLogRetrieveResponse(BaseModel):
409409
applied_expert_answer_id: Optional[str] = None
410410
"""ID of the expert answer that was applied to the query."""
411411

412+
applied_expert_review_id: Optional[str] = None
413+
"""ID of the expert review that was applied to the query."""
414+
412415
context: Optional[List[Context]] = None
413416
"""RAG context used for the query"""
414417

@@ -469,6 +472,9 @@ class QueryLogRetrieveResponse(BaseModel):
469472
expert_review_explanation: Optional[str] = None
470473
"""Expert explanation when marked as bad"""
471474

475+
expert_review_id: Optional[str] = None
476+
"""ID of the expert review that was created for the query."""
477+
472478
expert_review_status: Optional[Literal["good", "bad"]] = None
473479
"""Expert review status: 'good' or 'bad'"""
474480

src/codex/types/projects/remediation_list_resolved_logs_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,9 @@ class QueryLog(BaseModel):
409409
applied_expert_answer_id: Optional[str] = None
410410
"""ID of the expert answer that was applied to the query."""
411411

412+
applied_expert_review_id: Optional[str] = None
413+
"""ID of the expert review that was applied to the query."""
414+
412415
context: Optional[List[QueryLogContext]] = None
413416
"""RAG context used for the query"""
414417

@@ -469,6 +472,9 @@ class QueryLog(BaseModel):
469472
expert_review_explanation: Optional[str] = None
470473
"""Expert explanation when marked as bad"""
471474

475+
expert_review_id: Optional[str] = None
476+
"""ID of the expert review that was created for the query."""
477+
472478
expert_review_status: Optional[Literal["good", "bad"]] = None
473479
"""Expert review status: 'good' or 'bad'"""
474480

0 commit comments

Comments
 (0)