mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-18 02:42:31 +00:00
set defaults so that stainless does not pick as required params
This commit is contained in:
parent
d55100d9b7
commit
764026c0d6
8 changed files with 41 additions and 41 deletions
8
docs/_static/llama-stack-spec.html
vendored
8
docs/_static/llama-stack-spec.html
vendored
|
@ -3318,7 +3318,7 @@
|
|||
"name": "limit",
|
||||
"in": "query",
|
||||
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.",
|
||||
"required": true,
|
||||
"required": false,
|
||||
"schema": {
|
||||
"type": "integer"
|
||||
}
|
||||
|
@ -3327,7 +3327,7 @@
|
|||
"name": "order",
|
||||
"in": "query",
|
||||
"description": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and `desc` for descending order.",
|
||||
"required": true,
|
||||
"required": false,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
|
@ -13128,9 +13128,7 @@
|
|||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"query",
|
||||
"max_num_results",
|
||||
"rewrite_query"
|
||||
"query"
|
||||
],
|
||||
"title": "OpenaiSearchVectorStoreRequest"
|
||||
},
|
||||
|
|
6
docs/_static/llama-stack-spec.yaml
vendored
6
docs/_static/llama-stack-spec.yaml
vendored
|
@ -2323,7 +2323,7 @@ paths:
|
|||
description: >-
|
||||
A limit on the number of objects to be returned. Limit can range between
|
||||
1 and 100, and the default is 20.
|
||||
required: true
|
||||
required: false
|
||||
schema:
|
||||
type: integer
|
||||
- name: order
|
||||
|
@ -2331,7 +2331,7 @@ paths:
|
|||
description: >-
|
||||
Sort order by the `created_at` timestamp of the objects. `asc` for ascending
|
||||
order and `desc` for descending order.
|
||||
required: true
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
- name: after
|
||||
|
@ -9189,8 +9189,6 @@ components:
|
|||
additionalProperties: false
|
||||
required:
|
||||
- query
|
||||
- max_num_results
|
||||
- rewrite_query
|
||||
title: OpenaiSearchVectorStoreRequest
|
||||
VectorStoreSearchResponse:
|
||||
type: object
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue