Skip to content

Commit a08fe0e

Browse files
feat(api): api update
1 parent e825829 commit a08fe0e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 79
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8227cc69585fb2b6d4eed5266a60ed91768c97200f52f95fe022417c6e9e91da.yml
3-
openapi_spec_hash: e038f338d187fe1ac41d36ccce67dcc6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-31e39bc164768e4e73feb3ed3727643705b455e322c91e7fff1dfb2df504d2e8.yml
3+
openapi_spec_hash: 3f2c3d5358dc1732a92e3fed0f5cbcd7
44
config_hash: e9831eba75eecfc502817af80812f6a7

src/runloop_api_client/resources/benchmarks/benchmarks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def create(
8383
Args:
8484
is_public: Whether this benchmark is public.
8585
86-
name: The name of the Benchmark.
86+
name: The name of the Benchmark. This must be unique.
8787
8888
metadata: User defined metadata to attach to the benchmark for organization.
8989
@@ -347,7 +347,7 @@ async def create(
347347
Args:
348348
is_public: Whether this benchmark is public.
349349
350-
name: The name of the Benchmark.
350+
name: The name of the Benchmark. This must be unique.
351351
352352
metadata: User defined metadata to attach to the benchmark for organization.
353353

src/runloop_api_client/types/benchmark_create_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class BenchmarkCreateParams(TypedDict, total=False):
1313
"""Whether this benchmark is public."""
1414

1515
name: Required[str]
16-
"""The name of the Benchmark."""
16+
"""The name of the Benchmark. This must be unique."""
1717

1818
metadata: Optional[Dict[str, str]]
1919
"""User defined metadata to attach to the benchmark for organization."""

0 commit comments

Comments
 (0)