Skip to content

Commit 53aef45

Browse files
authored
chore: fix rl parameter schema (#200)
1 parent 4b6d703 commit 53aef45

1 file changed

Lines changed: 16 additions & 8 deletions

File tree

openapi.yaml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7084,7 +7084,8 @@ paths:
70847084
description: ID of the training session
70857085
in: path
70867086
required: true
7087-
type: string
7087+
schema:
7088+
type: string
70887089
/rl/training-sessions/{session_id}/operations/forward-backward/{operation_id}:
70897090
get:
70907091
summary: Get forward-backward operation
@@ -7105,12 +7106,14 @@ paths:
71057106
description: Training session ID
71067107
in: path
71077108
required: true
7108-
type: string
7109+
schema:
7110+
type: string
71097111
- name: operation_id
71107112
description: Operation ID
71117113
in: path
71127114
required: true
7113-
type: string
7115+
schema:
7116+
type: string
71147117
/rl/training-sessions/{session_id}/operations/optim-step/{operation_id}:
71157118
get:
71167119
summary: Get optim-step operation
@@ -7131,12 +7134,14 @@ paths:
71317134
description: Training session ID
71327135
in: path
71337136
required: true
7134-
type: string
7137+
schema:
7138+
type: string
71357139
- name: operation_id
71367140
description: Operation ID
71377141
in: path
71387142
required: true
7139-
type: string
7143+
schema:
7144+
type: string
71407145
/rl/training-sessions/{session_id}:forward-backward:
71417146
post:
71427147
summary: Forward-backward pass
@@ -7157,7 +7162,8 @@ paths:
71577162
description: Training session ID
71587163
in: path
71597164
required: true
7160-
type: string
7165+
schema:
7166+
type: string
71617167
- name: body
71627168
in: body
71637169
required: true
@@ -7183,7 +7189,8 @@ paths:
71837189
description: Training session ID
71847190
in: path
71857191
required: true
7186-
type: string
7192+
schema:
7193+
type: string
71877194
- name: body
71887195
in: body
71897196
required: true
@@ -7209,7 +7216,8 @@ paths:
72097216
description: ID of the training session
72107217
in: path
72117218
required: true
7212-
type: string
7219+
schema:
7220+
type: string
72137221

72147222
components:
72157223
securitySchemes:

0 commit comments

Comments
 (0)