@@ -69,6 +69,36 @@ export const apiNavigation: ApiNavGroup[] = [
6969 }
7070 ]
7171 } ,
72+ {
73+ "title" : "Personas" ,
74+ "items" : [
75+ {
76+ "title" : "List personas" ,
77+ "href" : "/docs/api/personas/listpersonas" ,
78+ "method" : "GET"
79+ } ,
80+ {
81+ "title" : "Create persona" ,
82+ "href" : "/docs/api/personas/createpersona" ,
83+ "method" : "POST"
84+ } ,
85+ {
86+ "title" : "Update persona" ,
87+ "href" : "/docs/api/personas/updatepersona" ,
88+ "method" : "PATCH"
89+ } ,
90+ {
91+ "title" : "Delete persona" ,
92+ "href" : "/docs/api/personas/deletepersona" ,
93+ "method" : "DELETE"
94+ } ,
95+ {
96+ "title" : "Duplicate persona" ,
97+ "href" : "/docs/api/personas/duplicatepersona" ,
98+ "method" : "POST"
99+ }
100+ ]
101+ } ,
72102 {
73103 "title" : "Agent Definitions" ,
74104 "items" : [
@@ -132,15 +162,165 @@ export const apiNavigation: ApiNavGroup[] = [
132162 {
133163 "title" : "Run Tests" ,
134164 "items" : [
165+ {
166+ "title" : "List test runs" ,
167+ "href" : "/docs/api/run-tests/listruntests" ,
168+ "method" : "GET"
169+ } ,
135170 {
136171 "title" : "Create a New Test Run" ,
137172 "href" : "/docs/api/run-tests/createruntest" ,
138173 "method" : "POST"
139174 } ,
175+ {
176+ "title" : "Get test run details" ,
177+ "href" : "/docs/api/run-tests/getruntestdetails" ,
178+ "method" : "GET"
179+ } ,
180+ {
181+ "title" : "Delete a test run" ,
182+ "href" : "/docs/api/run-tests/deleteruntest" ,
183+ "method" : "DELETE"
184+ } ,
140185 {
141186 "title" : "Execute a test run" ,
142187 "href" : "/docs/api/run-tests/executeruntest" ,
143188 "method" : "POST"
189+ } ,
190+ {
191+ "title" : "Update test run components" ,
192+ "href" : "/docs/api/run-tests/updatetestcomponents" ,
193+ "method" : "PATCH"
194+ } ,
195+ {
196+ "title" : "Get test executions" ,
197+ "href" : "/docs/api/run-tests/gettestexecutions" ,
198+ "method" : "GET"
199+ } ,
200+ {
201+ "title" : "Get scenarios for a test run" ,
202+ "href" : "/docs/api/run-tests/gettestscenarios" ,
203+ "method" : "GET"
204+ } ,
205+ {
206+ "title" : "Get call executions for a test run" ,
207+ "href" : "/docs/api/run-tests/getcallexecutions" ,
208+ "method" : "GET"
209+ } ,
210+ {
211+ "title" : "Get evaluation summary" ,
212+ "href" : "/docs/api/run-tests/getevalsummary" ,
213+ "method" : "GET"
214+ } ,
215+ {
216+ "title" : "Compare evaluation summaries" ,
217+ "href" : "/docs/api/run-tests/compareevalsummaries" ,
218+ "method" : "GET"
219+ } ,
220+ {
221+ "title" : "Add evaluation configurations" ,
222+ "href" : "/docs/api/run-tests/addevalconfigs" ,
223+ "method" : "POST"
224+ } ,
225+ {
226+ "title" : "Update evaluation configuration" ,
227+ "href" : "/docs/api/run-tests/updateevalconfig" ,
228+ "method" : "PATCH"
229+ } ,
230+ {
231+ "title" : "Delete evaluation configuration" ,
232+ "href" : "/docs/api/run-tests/deleteevalconfig" ,
233+ "method" : "DELETE"
234+ } ,
235+ {
236+ "title" : "Run new evaluations on test executions" ,
237+ "href" : "/docs/api/run-tests/runnewevalsontestexecution" ,
238+ "method" : "POST"
239+ } ,
240+ {
241+ "title" : "Rerun test executions" ,
242+ "href" : "/docs/api/run-tests/reruntestexecutions" ,
243+ "method" : "POST"
244+ } ,
245+ {
246+ "title" : "Delete test executions" ,
247+ "href" : "/docs/api/run-tests/deletetestexecutions" ,
248+ "method" : "POST"
249+ }
250+ ]
251+ } ,
252+ {
253+ "title" : "Test Executions" ,
254+ "items" : [
255+ {
256+ "title" : "Get test execution details" ,
257+ "href" : "/docs/api/test-executions/gettestexecutiondetails" ,
258+ "method" : "GET"
259+ } ,
260+ {
261+ "title" : "Get execution KPIs" ,
262+ "href" : "/docs/api/test-executions/getkpis" ,
263+ "method" : "GET"
264+ } ,
265+ {
266+ "title" : "Get performance summary" ,
267+ "href" : "/docs/api/test-executions/getperformancesummary" ,
268+ "method" : "GET"
269+ } ,
270+ {
271+ "title" : "Get eval explanation summary" ,
272+ "href" : "/docs/api/test-executions/getevalexplanationsummary" ,
273+ "method" : "GET"
274+ } ,
275+ {
276+ "title" : "Cancel test execution" ,
277+ "href" : "/docs/api/test-executions/cancelexecution" ,
278+ "method" : "POST"
279+ } ,
280+ {
281+ "title" : "Rerun call executions" ,
282+ "href" : "/docs/api/test-executions/reruncalls" ,
283+ "method" : "POST"
284+ }
285+ ]
286+ } ,
287+ {
288+ "title" : "Call Executions" ,
289+ "items" : [
290+ {
291+ "title" : "Get call execution details" ,
292+ "href" : "/docs/api/call-executions/getcallexecutiondetails" ,
293+ "method" : "GET"
294+ } ,
295+ {
296+ "title" : "Compare execution sessions" ,
297+ "href" : "/docs/api/call-executions/getsessioncomparison" ,
298+ "method" : "GET"
299+ }
300+ ]
301+ } ,
302+ {
303+ "title" : "Prompt Simulations" ,
304+ "items" : [
305+ {
306+ "title" : "List prompt simulation scenarios" ,
307+ "href" : "/docs/api/prompt-simulations/listscenarios" ,
308+ "method" : "GET"
309+ } ,
310+ {
311+ "title" : "List simulations for prompt template" ,
312+ "href" : "/docs/api/prompt-simulations/listsimulations" ,
313+ "method" : "GET"
314+ } ,
315+ {
316+ "title" : "Get prompt simulation details" ,
317+ "href" : "/docs/api/prompt-simulations/getsimulationdetails" ,
318+ "method" : "GET"
319+ } ,
320+ {
321+ "title" : "Execute prompt simulation" ,
322+ "href" : "/docs/api/prompt-simulations/executesimulation" ,
323+ "method" : "POST"
144324 }
145325 ]
146326 } ,
0 commit comments