Skip to content

Commit 575d190

Browse files
feat(api): api update
1 parent f55f4b7 commit 575d190

6 files changed

+16
-16
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: 1e86d5a7384400f4c3ddfb824fb31d84
2+
openapi_spec_hash: fd2542df68972f34edeb819c58600791
33
config_hash: 8f6e5c3b064cbb77569a6bf654954a56

src/codex/types/projects/query_log_list_by_group_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,10 @@ class QueryLogsByGroupQueryLog(BaseModel):
364364
"""If true, the response was guardrailed"""
365365

366366
messages: Optional[List[QueryLogsByGroupQueryLogMessage]] = None
367-
"""Optional message history to provide conversation context for the query.
367+
"""Message history to provide conversation context for the query.
368368
369-
Used to rewrite query into a self-contained version of itself. If not provided,
370-
the query will be treated as self-contained.
369+
Used for TrustworthyRAG and to rewrite query into a self-contained version of
370+
itself.
371371
"""
372372

373373
original_question: Optional[str] = None

src/codex/types/projects/query_log_list_groups_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ class QueryLogListGroupsResponse(BaseModel):
354354
"""If true, the response was guardrailed"""
355355

356356
messages: Optional[List[Message]] = None
357-
"""Optional message history to provide conversation context for the query.
357+
"""Message history to provide conversation context for the query.
358358
359-
Used to rewrite query into a self-contained version of itself. If not provided,
360-
the query will be treated as self-contained.
359+
Used for TrustworthyRAG and to rewrite query into a self-contained version of
360+
itself.
361361
"""
362362

363363
original_question: Optional[str] = None

src/codex/types/projects/query_log_list_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,10 +348,10 @@ class QueryLogListResponse(BaseModel):
348348
"""If true, the response was guardrailed"""
349349

350350
messages: Optional[List[Message]] = None
351-
"""Optional message history to provide conversation context for the query.
351+
"""Message history to provide conversation context for the query.
352352
353-
Used to rewrite query into a self-contained version of itself. If not provided,
354-
the query will be treated as self-contained.
353+
Used for TrustworthyRAG and to rewrite query into a self-contained version of
354+
itself.
355355
"""
356356

357357
original_question: Optional[str] = None

src/codex/types/projects/query_log_retrieve_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,10 @@ class QueryLogRetrieveResponse(BaseModel):
352352
"""If true, the response was guardrailed"""
353353

354354
messages: Optional[List[Message]] = None
355-
"""Optional message history to provide conversation context for the query.
355+
"""Message history to provide conversation context for the query.
356356
357-
Used to rewrite query into a self-contained version of itself. If not provided,
358-
the query will be treated as self-contained.
357+
Used for TrustworthyRAG and to rewrite query into a self-contained version of
358+
itself.
359359
"""
360360

361361
original_question: Optional[str] = None

src/codex/types/projects/remediation_list_resolved_logs_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,10 @@ class QueryLog(BaseModel):
355355
"""If true, the response was guardrailed"""
356356

357357
messages: Optional[List[QueryLogMessage]] = None
358-
"""Optional message history to provide conversation context for the query.
358+
"""Message history to provide conversation context for the query.
359359
360-
Used to rewrite query into a self-contained version of itself. If not provided,
361-
the query will be treated as self-contained.
360+
Used for TrustworthyRAG and to rewrite query into a self-contained version of
361+
itself.
362362
"""
363363

364364
original_question: Optional[str] = None

0 commit comments

Comments
 (0)