mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 06:08:04 +00:00
run openapi gen
This commit is contained in:
parent
b28e4002c9
commit
d7a161c820
2 changed files with 84 additions and 0 deletions
|
|
@ -3002,6 +3002,8 @@ components:
|
|||
type: integer
|
||||
max_steps_per_epoch:
|
||||
type: integer
|
||||
max_validation_steps:
|
||||
type: integer
|
||||
n_epochs:
|
||||
type: integer
|
||||
optimizer_config:
|
||||
|
|
@ -3010,6 +3012,7 @@ components:
|
|||
- n_epochs
|
||||
- max_steps_per_epoch
|
||||
- gradient_accumulation_steps
|
||||
- max_validation_steps
|
||||
- data_config
|
||||
- optimizer_config
|
||||
type: object
|
||||
|
|
@ -3192,6 +3195,14 @@ components:
|
|||
- embedding_model
|
||||
- chunk_size_in_tokens
|
||||
type: object
|
||||
VersionInfo:
|
||||
additionalProperties: false
|
||||
properties:
|
||||
version:
|
||||
type: string
|
||||
required:
|
||||
- version
|
||||
type: object
|
||||
ViolationLevel:
|
||||
enum:
|
||||
- info
|
||||
|
|
@ -4731,6 +4742,25 @@ paths:
|
|||
description: OK
|
||||
tags:
|
||||
- Telemetry
|
||||
/alpha/version:
|
||||
get:
|
||||
parameters:
|
||||
- description: JSON-encoded provider data which will be made available to the
|
||||
adapter servicing the API
|
||||
in: header
|
||||
name: X-LlamaStack-ProviderData
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/VersionInfo'
|
||||
description: OK
|
||||
tags:
|
||||
- Inspect
|
||||
security:
|
||||
- Default: []
|
||||
servers:
|
||||
|
|
@ -5225,6 +5255,8 @@ tags:
|
|||
- description: <SchemaDefinition schemaRef="#/components/schemas/VectorMemoryBankParams"
|
||||
/>
|
||||
name: VectorMemoryBankParams
|
||||
- description: <SchemaDefinition schemaRef="#/components/schemas/VersionInfo" />
|
||||
name: VersionInfo
|
||||
- description: <SchemaDefinition schemaRef="#/components/schemas/ViolationLevel" />
|
||||
name: ViolationLevel
|
||||
- description: <SchemaDefinition schemaRef="#/components/schemas/WolframAlphaToolDefinition"
|
||||
|
|
@ -5411,5 +5443,6 @@ x-tagGroups:
|
|||
- UserMessage
|
||||
- VectorMemoryBank
|
||||
- VectorMemoryBankParams
|
||||
- VersionInfo
|
||||
- ViolationLevel
|
||||
- WolframAlphaToolDefinition
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue