Skip to content

Commit 177778f

Browse files
feat(api): api update
1 parent c1b321b commit 177778f

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: 55
2-
openapi_spec_hash: fa4be08d4125b8da612cbe21dfffdf51
2+
openapi_spec_hash: 8a01495b5f02dff23dab6f0f5f74a1f7
33
config_hash: 48c3812186c899cdef23cc8de76bd2aa

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
@@ -430,6 +430,12 @@ class QueryLogsByGroupQueryLog(BaseModel):
430430
itself.
431431
"""
432432

433+
original_assistant_response: Optional[str] = None
434+
"""The original assistant response that would have been displayed to the user.
435+
436+
This may be `None` if this is a tool call step.
437+
"""
438+
433439
original_question: Optional[str] = None
434440
"""The original question that was asked before any rewriting or processing.
435441

src/codex/types/projects/query_log_list_groups_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,12 @@ class QueryLogListGroupsResponse(BaseModel):
425425
itself.
426426
"""
427427

428+
original_assistant_response: Optional[str] = None
429+
"""The original assistant response that would have been displayed to the user.
430+
431+
This may be `None` if this is a tool call step.
432+
"""
433+
428434
original_question: Optional[str] = None
429435
"""The original question that was asked before any rewriting or processing.
430436

src/codex/types/projects/query_log_list_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,12 @@ class QueryLogListResponse(BaseModel):
410410
itself.
411411
"""
412412

413+
original_assistant_response: Optional[str] = None
414+
"""The original assistant response that would have been displayed to the user.
415+
416+
This may be `None` if this is a tool call step.
417+
"""
418+
413419
original_question: Optional[str] = None
414420
"""The original question that was asked before any rewriting or processing.
415421

src/codex/types/projects/query_log_retrieve_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,12 @@ class QueryLogRetrieveResponse(BaseModel):
417417
itself.
418418
"""
419419

420+
original_assistant_response: Optional[str] = None
421+
"""The original assistant response that would have been displayed to the user.
422+
423+
This may be `None` if this is a tool call step.
424+
"""
425+
420426
original_question: Optional[str] = None
421427
"""The original question that was asked before any rewriting or processing.
422428

src/codex/types/projects/remediation_list_resolved_logs_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,12 @@ class QueryLog(BaseModel):
417417
itself.
418418
"""
419419

420+
original_assistant_response: Optional[str] = None
421+
"""The original assistant response that would have been displayed to the user.
422+
423+
This may be `None` if this is a tool call step.
424+
"""
425+
420426
original_question: Optional[str] = None
421427
"""The original question that was asked before any rewriting or processing.
422428

0 commit comments

Comments
 (0)