mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
chore: fix missing endpoint on stainless config
delete /v1/scoring-functions/{scoring_fn_id} exists in the OpenAPI spec,
but isn't specified in the Stainless config, so code will not be
generated for it.
delete /v1alpha/eval/benchmarks/{benchmark_id} exists in the OpenAPI
spec, but isn't specified in the Stainless config, so code will not be
generated for it
Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
738d4bfd7e
commit
3dd252ef3e
1 changed files with 2 additions and 0 deletions
|
|
@ -372,6 +372,7 @@ resources:
|
||||||
endpoint: get /v1/scoring-functions
|
endpoint: get /v1/scoring-functions
|
||||||
paginated: false
|
paginated: false
|
||||||
register: post /v1/scoring-functions
|
register: post /v1/scoring-functions
|
||||||
|
unregister: delete /v1/scoring-functions/{scoring_fn_id}
|
||||||
models:
|
models:
|
||||||
scoring_fn: ScoringFn
|
scoring_fn: ScoringFn
|
||||||
scoring_fn_params: ScoringFnParams
|
scoring_fn_params: ScoringFnParams
|
||||||
|
|
@ -427,6 +428,7 @@ resources:
|
||||||
endpoint: get /v1alpha/eval/benchmarks
|
endpoint: get /v1alpha/eval/benchmarks
|
||||||
paginated: false
|
paginated: false
|
||||||
register: post /v1alpha/eval/benchmarks
|
register: post /v1alpha/eval/benchmarks
|
||||||
|
unregister: delete /v1alpha/eval/benchmarks/{benchmark_id}
|
||||||
models:
|
models:
|
||||||
benchmark: Benchmark
|
benchmark: Benchmark
|
||||||
list_benchmarks_response: ListBenchmarksResponse
|
list_benchmarks_response: ListBenchmarksResponse
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue