-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAdminPanel.http
More file actions
423 lines (334 loc) · 9.52 KB
/
Copy pathAdminPanel.http
File metadata and controls
423 lines (334 loc) · 9.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
@user=admin
@password=password
###
# @name Actuator Health
#@no-log
GET http://localhost:8080/api/v1/health
###
# @name Get All Roles
#@no-log
GET http://localhost:8080/api/v1/roles
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Role
#@no-log
@roleName = NewRole7
GET http://localhost:8080/api/v1/roles/{{roleName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Role
#@no-log
@roleName = NewRole7
PUT http://localhost:8080/api/roles/{{roleName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete Role
#@no-log
@roleToDelete = NewRole7
DELETE http://localhost:8080/api/v1/roles/{{roleToDelete}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All Models
#@no-log
GET http://localhost:8080/api/v1/models
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Model
#@no-log
@modelName = chat-gpt
GET http://localhost:8080/api/v1/models/{{modelName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Model
#@no-log
@modelName = chat-gpt
PUT http://localhost:8080/api/v1/models/{{modelName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete Model
#@no-log
@modelToDelete = chat-gpt
DELETE http://localhost:8080/api/v1/models/{{modelToDelete}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All Applications
#@no-log
GET http://localhost:8080/api/v1/applications
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Application
#@no-log
@appName = echo
GET http://localhost:8080/api/v1/applications/{{appName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Application
#@no-log
@appName = echo
PUT http://localhost:8080/api/v1/applications/{{appName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete Application
#@no-log
@appToDelete = echo
DELETE http://localhost:8080/api/v1/applications/{{appToDelete}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All Interceptors
#@no-log
GET http://localhost:8080/api/v1/interceptors
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Interceptor
#@no-log
@interceptorName = logging-interceptor
GET http://localhost:8080/api/v1/interceptors/{{interceptorName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Interceptor
#@no-log
@interceptorName = logging-interceptor
PUT http://localhost:8080/api//interceptors/{{interceptorName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Get All Routes
#@no-log
GET http://localhost:8080/api/v1/routes
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Route
#@no-log
@routeName = chat-route
GET http://localhost:8080/api/v1/routes/{{routeName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Route
#@no-log
@routeName = chat-route
PUT http://localhost:8080/api/v1/routes/{{routeName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete Route
#@no-log
@routeToDelete = chat-route
DELETE http://localhost:8080/api/v1/routes/{{routeToDelete}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All Keys
#@no-log
GET http://localhost:8080/api/v1/keys
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Key
#@no-log
@keyName = openai-key
GET http://localhost:8080/api/v1/keys/{{keyName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Create Key
#@no-log
POST http://localhost:8080/api/v1/keys
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
Content-Type: application/json
{
"name": "openai-key",
"key": "sk-...",
"project": "ABC",
"description": "OpenAI API key",
"expiresAt": "1746541366000"
}
###
# @name Update Key
#@no-log
@keyName = openai-key
PUT http://localhost:8080/api/v1/keys/{{keyName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
Content-Type: application/json
{
"name": "{{keyName}}",
"key": "sk-...",
"project": "ABC",
"description": "OpenAI API key",
"expiresAt": "1746541366000"
}
###
# @name Delete Key
#@no-log
@keyToDelete = openai-key
DELETE http://localhost:8080/api/v1/keys/{{keyToDelete}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All Adapters
#@no-log
GET http://localhost:8080/api/v1/adapters
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Adapter
#@no-log
@adapterName = chat-adapter
GET http://localhost:8080/api/v1/adapters/{{adapterName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Adapter
#@no-log
@adapterName = chat-adapter
PUT http://localhost:8080/api/v1/adapters/{{adapterName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete Adapter
#@no-log
@adapterName = chat-adapter
DELETE http://localhost:8080/api/v1/adapters/{{adapterName}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get All ToolSets
#@no-log
GET http://localhost:8080/api/v1/toolSets
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get ToolSet
#@no-log
@toolSetName = chat-toolSet
GET http://localhost:8080/api/v1/toolSets/{{toolSetName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update ToolSet
#@no-log
@toolSetName = chat-toolSet
PUT http://localhost:8080/api/v1/toolSets/{{toolSetName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
Content-Type: application/json
###
# @name Delete ToolSet
#@no-log
@toolSetName = chat-toolSet
DELETE http://localhost:8080/api/v1/toolSets/{{toolSetName}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
# @name Get All Tokenizers
#@no-log
GET http://localhost:8080/api/v1/tokenizers
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Application Type Schemas
#@no-log
GET http://localhost:8080/api/v1/applicationTypeSchemas
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Application Type Schema by ID
#@no-log
@schemaId = chat-schema
GET http://localhost:8080/api/v1/applicationTypeSchemas?id={{schemaId}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Application Type Schema by ID
#@no-log
@schemaId = chat-schema
PUT http://localhost:8080/api/v1/applicationTypeSchemas?id={{schemaId}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
Content-Type: application/json
###
# @name Get All Interceptor Runners
#@no-log
GET http://localhost:8080/api/v1/interceptor-runners
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Interceptor Runner
#@no-log
@interceptorRunnerName = openai-key
GET http://localhost:8080/api/v1/interceptor-runners/{{interceptorRunnerName}}
If-None-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Update Interceptor Runner
#@no-log
@interceptorRunnerName = interceptorRunnerName
PUT http://localhost:8080/api/v1/interceptor-runners/{{interceptorRunnerName}}
If-Match: {{etag}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
Content-Type: application/json
###
# @name Delete Interceptor Runner
#@no-log
@interceptorRunnerName = interceptorRunnerName
DELETE http://localhost:8080/api/v1/interceptor-runners/{{interceptorRunnerName}}
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Get Folders
#@no-log
POST http://localhost:8080/api/v1/folders
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
Content-Type: application/json
{
"path": "/prompts",
"type": "PROMPT"
}
###
# @name Get Rules
#@no-log
GET http://localhost:8080/api/v1/folders?path=/prompts
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}
###
# @name Delete Folder
#@no-log
DELETE http://localhost:8080/api/v1/folders?path=/prompts
Authorization: Basic {{user}} {{password}}
#Authorization: Bearer {{$auth.token("keycloak")}}