Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.34"
".": "0.1.0-alpha.35"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 70
openapi_spec_hash: 9018ebfb2a9e1afa87058b3a4bd41b0b
openapi_spec_hash: 022a28b575651c2f21f43b1148141ce3
config_hash: aad16f20fed13ac50211fc1d0e2ea621
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-alpha.35 (2025-11-24)

Full Changelog: [v0.1.0-alpha.34...v0.1.0-alpha.35](https://github.com/cleanlab/codex-python/compare/v0.1.0-alpha.34...v0.1.0-alpha.35)

### Features

* **api:** api update ([884de94](https://github.com/cleanlab/codex-python/commit/884de944e616b26580830817486bb85e74f1e7c4))


### Chores

* add Python 3.14 classifier and testing ([4dec29c](https://github.com/cleanlab/codex-python/commit/4dec29cdf74dd3beeccf326678db7170156f0c44))

## 0.1.0-alpha.34 (2025-11-19)

Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/cleanlab/codex-python/compare/v0.1.0-alpha.33...v0.1.0-alpha.34)
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "codex-sdk"
version = "0.1.0-alpha.34"
version = "0.1.0-alpha.35"
description = "Internal SDK used within cleanlab-codex package. Refer to https://pypi.org/project/cleanlab-codex/ instead."
dynamic = ["readme"]
license = "MIT"
Expand All @@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
Expand Down
2 changes: 1 addition & 1 deletion src/codex/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "codex"
__version__ = "0.1.0-alpha.34" # x-release-please-version
__version__ = "0.1.0-alpha.35" # x-release-please-version
6 changes: 0 additions & 6 deletions src/codex/types/projects/query_log_list_by_group_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,12 +467,6 @@ class QueryLogsByGroupQueryLog(BaseModel):
expert review. Expert review will override the original guardrail decision.
"""

expert_override_log_id: Optional[str] = None
"""
ID of the query log with expert review that overrode the original guardrail
decision.
"""

expert_review_created_at: Optional[datetime] = None
"""When the expert review was created"""

Expand Down
6 changes: 0 additions & 6 deletions src/codex/types/projects/query_log_list_groups_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,6 @@ class QueryLogListGroupsResponse(BaseModel):
expert review. Expert review will override the original guardrail decision.
"""

expert_override_log_id: Optional[str] = None
"""
ID of the query log with expert review that overrode the original guardrail
decision.
"""

expert_review_created_at: Optional[datetime] = None
"""When the expert review was created"""

Expand Down
6 changes: 0 additions & 6 deletions src/codex/types/projects/query_log_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,12 +450,6 @@ class QueryLogListResponse(BaseModel):
expert review. Expert review will override the original guardrail decision.
"""

expert_override_log_id: Optional[str] = None
"""
ID of the query log with expert review that overrode the original guardrail
decision.
"""

expert_review_created_at: Optional[datetime] = None
"""When the expert review was created"""

Expand Down
10 changes: 4 additions & 6 deletions src/codex/types/projects/query_log_retrieve_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,8 @@ class QueryLogRetrieveResponse(BaseModel):

expert_answer_id: Optional[str] = None

expert_override_log_id: Optional[str] = None

formatted_escalation_eval_scores: Optional[Dict[str, FormattedEscalationEvalScores]] = None

formatted_eval_scores: Optional[Dict[str, FormattedEvalScores]] = None
Expand All @@ -392,6 +394,8 @@ class QueryLogRetrieveResponse(BaseModel):
issue_status: Literal["addressed", "unaddressed"]
"""Manual review status override for remediations."""

log_needs_review: bool

needs_review: bool

project_id: str
Expand Down Expand Up @@ -457,12 +461,6 @@ class QueryLogRetrieveResponse(BaseModel):
expert review. Expert review will override the original guardrail decision.
"""

expert_override_log_id: Optional[str] = None
"""
ID of the query log with expert review that overrode the original guardrail
decision.
"""

expert_review_created_at: Optional[datetime] = None
"""When the expert review was created"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,6 @@ class QueryLog(BaseModel):
expert review. Expert review will override the original guardrail decision.
"""

expert_override_log_id: Optional[str] = None
"""
ID of the query log with expert review that overrode the original guardrail
decision.
"""

expert_review_created_at: Optional[datetime] = None
"""When the expert review was created"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ class ExpertReviewListResponse(BaseModel):

evaluated_response: Optional[str] = None

expert_override_log_id: str

last_edited_at: datetime

last_edited_by: Optional[str] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ class ExpertReviewRetrieveResponse(BaseModel):

evaluated_response: Optional[str] = None

expert_override_log_id: str

last_edited_at: datetime

last_edited_by: Optional[str] = None
Expand Down