-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsidebar-api.js
More file actions
30 lines (30 loc) · 821 Bytes
/
sidebar-api.js
File metadata and controls
30 lines (30 loc) · 821 Bytes
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
module.exports = [
{
type: 'html',
className: 'sidebar-title',
value: 'API',
defaultStyle: true,
},
{
type: 'category',
label: 'nilAI API',
items: [
'api/nilai/overview',
'api/nilai/chat-completion-v-1-chat-completions-post',
'api/nilai/create-response-v-1-responses-post',
'api/nilai/get-attestation-v-1-attestation-report-get',
'api/nilai/get-models-v-1-models-get',
'api/nilai/get-usage-v-1-usage-get',
'api/nilai/health-check-v-1-health-get',
'api/nilai/get-prompt-store-delegation-v-1-delegation-get',
{
type: 'category',
label: 'Pricing',
items: [
'api/nilai/get-all-prices-v-1-pricing-get',
'api/nilai/get-model-price-v-1-pricing-model-name-get',
],
},
],
},
];