1import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
2
3const sidebar: SidebarsConfig = {
4 apisidebar: [
5 {
6 type: "doc",
7 id: "api/HTTP/runtime",
8 },
9 {
10 type: "category",
11 label: "Datasets",
12 items: [
13 {
14 type: "doc",
15 id: "api/HTTP/get-catalogs",
16 label: "List Catalogs",
17 className: "api-method get",
18 },
19 {
20 type: "doc",
21 id: "api/HTTP/get-datasets",
22 label: "List Datasets",
23 className: "api-method get",
24 },
25 {
26 type: "doc",
27 id: "api/HTTP/patch-dataset-acceleration",
28 label: "Update Refresh SQL",
29 className: "api-method patch",
30 },
31 {
32 type: "doc",
33 id: "api/HTTP/post-dataset-refresh",
34 label: "Refresh Dataset",
35 className: "api-method post",
36 },
37 ],
38 },
39 {
40 type: "category",
41 label: "AI",
42 items: [
43 {
44 type: "doc",
45 id: "api/HTTP/post-chat-completions",
46 label: "Create Chat Completion",
47 className: "api-method post",
48 },
49 {
50 type: "doc",
51 id: "api/HTTP/post-embeddings",
52 label: "Create Embeddings",
53 className: "api-method post",
54 },
55 {
56 type: "doc",
57 id: "api/HTTP/get-models",
58 label: "List Models",
59 className: "api-method get",
60 },
61 {
62 type: "doc",
63 id: "api/HTTP/get-model-predict",
64 label: "ML Prediction",
65 className: "api-method get",
66 },
67 {
68 type: "doc",
69 id: "api/HTTP/post-batch-predict",
70 label: "Batch ML Predictions",
71 className: "api-method post",
72 },
73 ],
74 },
75 {
76 type: "category",
77 label: "Evaluations",
78 items: [
79 {
80 type: "doc",
81 id: "api/HTTP/list",
82 label: "List Evals",
83 className: "api-method get",
84 },
85 {
86 type: "doc",
87 id: "api/HTTP/post-eval",
88 label: "Run Eval",
89 className: "api-method post",
90 },
91 ],
92 },
93 {
94 type: "category",
95 label: "Iceberg",
96 items: [
97 {
98 type: "doc",
99 id: "api/HTTP/get-config",
100 label: "Get Iceberg API config",
101 className: "api-method get",
102 },
103 {
104 type: "doc",
105 id: "api/HTTP/get-iceberg-namespaces",
106 label: "List Iceberg namespaces",
107 className: "api-method get",
108 },
109 {
110 type: "doc",
111 id: "api/HTTP/head-namespace",
112 label: "Check Namespace exists",
113 className: "api-method head",
114 },
115 ],
116 },
117 {
118 type: "category",
119 label: "mcp",
120 items: [
121 {
122 type: "doc",
123 id: "api/HTTP/operation-id",
124 label: "Establish an MCP SSE Connection",
125 className: "api-method get",
126 },
127 {
128 type: "doc",
129 id: "api/HTTP/mcp-event",
130 label: "Send message to MCP server",
131 className: "api-method post",
132 },
133 ],
134 },
135 {
136 type: "category",
137 label: "SQL",
138 items: [
139 {
140 type: "doc",
141 id: "api/HTTP/post-nsql",
142 label: "Text-to-SQL (NSQL)",
143 className: "api-method post",
144 },
145 {
146 type: "doc",
147 id: "api/HTTP/post-search",
148 label: "Search",
149 className: "api-method post",
150 },
151 {
152 type: "doc",
153 id: "api/HTTP/post-sql",
154 label: "SQL Query",
155 className: "api-method post",
156 },
157 ],
158 },
159 {
160 type: "category",
161 label: "General",
162 items: [
163 {
164 type: "doc",
165 id: "api/HTTP/generate-package",
166 label: "Generate Package",
167 className: "api-method post",
168 },
169 {
170 type: "doc",
171 id: "api/HTTP/get-spicepods",
172 label: "List Spicepods",
173 className: "api-method get",
174 },
175 {
176 type: "doc",
177 id: "api/HTTP/get-status",
178 label: "Check Runtime Status",
179 className: "api-method get",
180 },
181 ],
182 },
183 {
184 type: "category",
185 label: "Ready",
186 items: [
187 {
188 type: "doc",
189 id: "api/HTTP/ready",
190 label: "Check Readiness",
191 className: "api-method get",
192 },
193 ],
194 },
195 {
196 type: "category",
197 label: "Tools",
198 items: [
199 {
200 type: "doc",
201 id: "api/HTTP/list",
202 label: "List Tools",
203 className: "api-method get",
204 },
205 {
206 type: "doc",
207 id: "api/HTTP/post",
208 label: "Run Tool",
209 className: "api-method post",
210 },
211 ],
212 },
213 ],
214};
215
216export default sidebar.apisidebar;
217
1import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
2
3const sidebar: SidebarsConfig = {
4 apisidebar: [
5 {
6 type: "doc",
7 id: "api/HTTP/runtime",
8 },
9 {
10 type: "category",
11 label: "Datasets",
12 items: [
13 {
14 type: "doc",
15 id: "api/HTTP/get-catalogs",
16 label: "List Catalogs",
17 className: "api-method get",
18 },
19 {
20 type: "doc",
21 id: "api/HTTP/get-datasets",
22 label: "List Datasets",
23 className: "api-method get",
24 },
25 {
26 type: "doc",
27 id: "api/HTTP/patch-dataset-acceleration",
28 label: "Update Refresh SQL",
29 className: "api-method patch",
30 },
31 {
32 type: "doc",
33 id: "api/HTTP/post-dataset-refresh",
34 label: "Refresh Dataset",
35 className: "api-method post",
36 },
37 ],
38 },
39 {
40 type: "category",
41 label: "AI",
42 items: [
43 {
44 type: "doc",
45 id: "api/HTTP/post-chat-completions",
46 label: "Create Chat Completion",
47 className: "api-method post",
48 },
49 {
50 type: "doc",
51 id: "api/HTTP/post-embeddings",
52 label: "Create Embeddings",
53 className: "api-method post",
54 },
55 {
56 type: "doc",
57 id: "api/HTTP/get-models",
58 label: "List Models",
59 className: "api-method get",
60 },
61 {
62 type: "doc",
63 id: "api/HTTP/get-model-predict",
64 label: "ML Prediction",
65 className: "api-method get",
66 },
67 {
68 type: "doc",
69 id: "api/HTTP/post-batch-predict",
70 label: "Batch ML Predictions",
71 className: "api-method post",
72 },
73 ],
74 },
75 {
76 type: "category",
77 label: "Evaluations",
78 items: [
79 {
80 type: "doc",
81 id: "api/HTTP/list",
82 label: "List Evals",
83 className: "api-method get",
84 },
85 {
86 type: "doc",
87 id: "api/HTTP/post-eval",
88 label: "Run Eval",
89 className: "api-method post",
90 },
91 ],
92 },
93 {
94 type: "category",
95 label: "Iceberg",
96 items: [
97 {
98 type: "doc",
99 id: "api/HTTP/get-config",
100 label: "Get Iceberg API config",
101 className: "api-method get",
102 },
103 {
104 type: "doc",
105 id: "api/HTTP/get-iceberg-namespaces",
106 label: "List Iceberg namespaces",
107 className: "api-method get",
108 },
109 {
110 type: "doc",
111 id: "api/HTTP/head-namespace",
112 label: "Check Namespace exists",
113 className: "api-method head",
114 },
115 ],
116 },
117 {
118 type: "category",
119 label: "mcp",
120 items: [
121 {
122 type: "doc",
123 id: "api/HTTP/operation-id",
124 label: "Establish an MCP SSE Connection",
125 className: "api-method get",
126 },
127 {
128 type: "doc",
129 id: "api/HTTP/mcp-event",
130 label: "Send message to MCP server",
131 className: "api-method post",
132 },
133 ],
134 },
135 {
136 type: "category",
137 label: "SQL",
138 items: [
139 {
140 type: "doc",
141 id: "api/HTTP/post-nsql",
142 label: "Text-to-SQL (NSQL)",
143 className: "api-method post",
144 },
145 {
146 type: "doc",
147 id: "api/HTTP/post-search",
148 label: "Search",
149 className: "api-method post",
150 },
151 {
152 type: "doc",
153 id: "api/HTTP/post-sql",
154 label: "SQL Query",
155 className: "api-method post",
156 },
157 ],
158 },
159 {
160 type: "category",
161 label: "General",
162 items: [
163 {
164 type: "doc",
165 id: "api/HTTP/generate-package",
166 label: "Generate Package",
167 className: "api-method post",
168 },
169 {
170 type: "doc",
171 id: "api/HTTP/get-spicepods",
172 label: "List Spicepods",
173 className: "api-method get",
174 },
175 {
176 type: "doc",
177 id: "api/HTTP/get-status",
178 label: "Check Runtime Status",
179 className: "api-method get",
180 },
181 ],
182 },
183 {
184 type: "category",
185 label: "Ready",
186 items: [
187 {
188 type: "doc",
189 id: "api/HTTP/ready",
190 label: "Check Readiness",
191 className: "api-method get",
192 },
193 ],
194 },
195 {
196 type: "category",
197 label: "Tools",
198 items: [
199 {
200 type: "doc",
201 id: "api/HTTP/list",
202 label: "List Tools",
203 className: "api-method get",
204 },
205 {
206 type: "doc",
207 id: "api/HTTP/post",
208 label: "Run Tool",
209 className: "api-method post",
210 },
211 ],
212 },
213 ],
214};
215
216export default sidebar.apisidebar;
217