Skip to content

release: 0.1.0-alpha.19 #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 7, 2025
Merged
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.18"
".": "0.1.0-alpha.19"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 43
openapi_spec_hash: b7beefbd38b4fcdd191cdb81a18a023b
config_hash: 5e459b33c53ffa6e554087a779bdb790
configured_endpoints: 44
openapi_spec_hash: 97719fe7ae4c641a5a020dd21f2978dd
config_hash: 659f65b6ccf5612986f920f7f9abbcb5
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.1.0-alpha.19 (2025-05-07)

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

### Features

* **api:** add validate endpoint ([099ac1b](https://github.com/cleanlab/codex-python/commit/099ac1b68ffc0cbfc5ce4bd23fd5f9899e0b64f9))
* **api:** api update ([8e01ccd](https://github.com/cleanlab/codex-python/commit/8e01ccdc8e341d010e8989f30f4fd887effa1871))
* **api:** api update ([61fdb7a](https://github.com/cleanlab/codex-python/commit/61fdb7aaaa6c2533ebcfdfe3c0aff31474e75d51))
* **api:** api update ([a52c74a](https://github.com/cleanlab/codex-python/commit/a52c74a22fb720f10265021d057f34874f73846b))
* **api:** api update ([6947764](https://github.com/cleanlab/codex-python/commit/69477646d7c8eff2bae01199949e4037771ba460))

## 0.1.0-alpha.18 (2025-04-24)

Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/cleanlab/codex-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
Expand Down
4 changes: 3 additions & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ from codex.types import (
ProjectExportResponse,
ProjectIncrementQueriesResponse,
ProjectRetrieveAnalyticsResponse,
ProjectValidateResponse,
)
```

Expand All @@ -153,8 +154,9 @@ Methods:
- <code title="get /api/projects/">client.projects.<a href="./src/codex/resources/projects/projects.py">list</a>(\*\*<a href="src/codex/types/project_list_params.py">params</a>) -> <a href="./src/codex/types/project_list_response.py">ProjectListResponse</a></code>
- <code title="delete /api/projects/{project_id}">client.projects.<a href="./src/codex/resources/projects/projects.py">delete</a>(project_id) -> None</code>
- <code title="get /api/projects/{project_id}/export">client.projects.<a href="./src/codex/resources/projects/projects.py">export</a>(project_id) -> <a href="./src/codex/types/project_export_response.py">object</a></code>
- <code title="post /api/projects/{project_id}/increment_queries">client.projects.<a href="./src/codex/resources/projects/projects.py">increment_queries</a>(project_id) -> <a href="./src/codex/types/project_increment_queries_response.py">object</a></code>
- <code title="post /api/projects/{project_id}/increment_queries">client.projects.<a href="./src/codex/resources/projects/projects.py">increment_queries</a>(project_id, \*\*<a href="src/codex/types/project_increment_queries_params.py">params</a>) -> <a href="./src/codex/types/project_increment_queries_response.py">object</a></code>
- <code title="get /api/projects/{project_id}/analytics/">client.projects.<a href="./src/codex/resources/projects/projects.py">retrieve_analytics</a>(project_id, \*\*<a href="src/codex/types/project_retrieve_analytics_params.py">params</a>) -> <a href="./src/codex/types/project_retrieve_analytics_response.py">ProjectRetrieveAnalyticsResponse</a></code>
- <code title="post /api/projects/{project_id}/validate">client.projects.<a href="./src/codex/resources/projects/projects.py">validate</a>(project_id, \*\*<a href="src/codex/types/project_validate_params.py">params</a>) -> <a href="./src/codex/types/project_validate_response.py">ProjectValidateResponse</a></code>

## AccessKeys

Expand Down
2 changes: 1 addition & 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.18"
version = "0.1.0-alpha.19"
description = "Internal SDK used within cleanlab-codex package. Refer to https://pypi.org/project/cleanlab-codex/ instead."
dynamic = ["readme"]
license = "MIT"
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.18" # x-release-please-version
__version__ = "0.1.0-alpha.19" # x-release-please-version
12 changes: 12 additions & 0 deletions src/codex/resources/projects/entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ def query(
question: str,
use_llm_matching: bool | NotGiven = NOT_GIVEN,
client_metadata: Optional[object] | NotGiven = NOT_GIVEN,
query_metadata: Optional[entry_query_params.QueryMetadata] | NotGiven = NOT_GIVEN,
x_client_library_version: str | NotGiven = NOT_GIVEN,
x_integration_type: str | NotGiven = NOT_GIVEN,
x_source: str | NotGiven = NOT_GIVEN,
Expand All @@ -334,6 +335,10 @@ def query(
Query Entries Route

Args:
client_metadata: Deprecated: Use query_metadata instead

query_metadata: Optional logging data that can be provided by the client.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand Down Expand Up @@ -361,6 +366,7 @@ def query(
{
"question": question,
"client_metadata": client_metadata,
"query_metadata": query_metadata,
},
entry_query_params.EntryQueryParams,
),
Expand Down Expand Up @@ -708,6 +714,7 @@ async def query(
question: str,
use_llm_matching: bool | NotGiven = NOT_GIVEN,
client_metadata: Optional[object] | NotGiven = NOT_GIVEN,
query_metadata: Optional[entry_query_params.QueryMetadata] | NotGiven = NOT_GIVEN,
x_client_library_version: str | NotGiven = NOT_GIVEN,
x_integration_type: str | NotGiven = NOT_GIVEN,
x_source: str | NotGiven = NOT_GIVEN,
Expand All @@ -723,6 +730,10 @@ async def query(
Query Entries Route

Args:
client_metadata: Deprecated: Use query_metadata instead

query_metadata: Optional logging data that can be provided by the client.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand Down Expand Up @@ -750,6 +761,7 @@ async def query(
{
"question": question,
"client_metadata": client_metadata,
"query_metadata": query_metadata,
},
entry_query_params.EntryQueryParams,
),
Expand Down
Loading