Skip to content

release: 0.29.0 #579

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 3 commits into from
Mar 25, 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.28.0"
".": "0.29.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 78
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-4ac5f2286270f1f2c2b41e7f57fcc0527f602ce8d9383c790ed40ce21236e0cf.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-3542d28a321a2d5ae372d8e99dc615fbda814a223e1c15717c37727a1dd00ff1.yml
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.29.0 (2025-03-25)

Full Changelog: [v0.28.0...v0.29.0](https://github.com/runloopai/api-client-python/compare/v0.28.0...v0.29.0)

### Features

* **api:** api update ([#578](https://github.com/runloopai/api-client-python/issues/578)) ([73a814f](https://github.com/runloopai/api-client-python/commit/73a814fa135eb768ca5d6f7e73c9720d32c5be93))
* **api:** api update ([#580](https://github.com/runloopai/api-client-python/issues/580)) ([c8389b1](https://github.com/runloopai/api-client-python/commit/c8389b1d1c521226ccca8665c79c1b1a5349e457))

## 0.28.0 (2025-03-21)

Full Changelog: [v0.27.0...v0.28.0](https://github.com/runloopai/api-client-python/compare/v0.27.0...v0.28.0)
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 = "runloop_api_client"
version = "0.28.0"
version = "0.29.0"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/runloop_api_client/_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__ = "runloop_api_client"
__version__ = "0.28.0" # x-release-please-version
__version__ = "0.29.0" # x-release-please-version
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Log(BaseModel):
level: str
"""Log line severity level."""

source: Literal["setup_commands", "entrypoint", "exec", "files"]
source: Literal["setup_commands", "entrypoint", "exec", "files", "stats"]
"""The source of the log."""

timestamp_ms: int
Expand Down
9 changes: 8 additions & 1 deletion src/runloop_api_client/types/scoring_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@

class ScorerAstGrepScoringFunction(BaseModel):
pattern: str
"""AST pattern to match."""
"""AST pattern to match.

Pattern will be passed to ast-grep using the commandline surround by double
quotes ("), so make sure to use proper escaping (for example, \\$$\\$$\\$$).
"""

search_directory: str
"""The path to search."""
Expand Down Expand Up @@ -51,6 +55,9 @@ class ScorerCommandScoringFunction(BaseModel):


class ScorerCustomScoringFunction(BaseModel):
custom_scorer_type: str
"""Type of the scoring function, previously registered with Runloop."""

type: Literal["custom_scorer"]

scorer_params: Optional[object] = None
Expand Down
9 changes: 8 additions & 1 deletion src/runloop_api_client/types/scoring_function_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@

class ScorerAstGrepScoringFunction(TypedDict, total=False):
pattern: Required[str]
"""AST pattern to match."""
"""AST pattern to match.

Pattern will be passed to ast-grep using the commandline surround by double
quotes ("), so make sure to use proper escaping (for example, \\$$\\$$\\$$).
"""

search_directory: Required[str]
"""The path to search."""
Expand Down Expand Up @@ -50,6 +54,9 @@ class ScorerCommandScoringFunction(TypedDict, total=False):


class ScorerCustomScoringFunction(TypedDict, total=False):
custom_scorer_type: Required[str]
"""Type of the scoring function, previously registered with Runloop."""

type: Required[Literal["custom_scorer"]]

scorer_params: Optional[object]
Expand Down
Loading