-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.json
More file actions
306 lines (306 loc) · 7.95 KB
/
Copy pathopenapi.json
File metadata and controls
306 lines (306 loc) · 7.95 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
{
"openapi": "3.0.0",
"info": {
"title": "Aspose.Imaging Examples Generator API",
"version": "26.6.0",
"description": "REST API for the Aspose.Imaging agentic .NET examples generator. Submit tasks, run categories, poll job status and retrieve results. All 2,874 generated examples are compiler-validated C# code for Aspose.Imaging for .NET.",
"contact": {
"name": "Aspose.Imaging Agent",
"url": "https://github.com/aspose-imaging/agentic-net-examples"
},
"x-mcp-endpoint": "http://faisalabad-examples-mcp.dynabic.com:7009/mcp/sse"
},
"servers": [
{
"url": "http://faisalabad-examples-mcp.dynabic.com:7009",
"description": "Aspose.Imaging Examples Agent"
}
],
"paths": {
"/api/v1/run/prompt": {
"post": {
"summary": "Run a single prompt through the pipeline",
"operationId": "runPrompt",
"tags": [
"Pipeline"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "Task description in plain English"
},
"category": {
"type": "string",
"description": "Category slug (optional)"
}
},
"required": [
"task"
]
}
}
}
},
"responses": {
"202": {
"description": "Job accepted — poll /api/v1/status/{job_id}"
},
"400": {
"description": "Missing task"
}
}
}
},
"/api/v1/run/category": {
"post": {
"summary": "Run all tasks in a category",
"operationId": "runCategory",
"tags": [
"Pipeline"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"category": {
"type": "string",
"enum": [
"Conversion",
"Convert APNG",
"Convert CDR",
"Convert CMX Images",
"Convert DICOM Images",
"Convert EPS Images",
"Convert Open Document Graphics",
"Convert Raster Image",
"Convert SVG to Raster Images",
"Convert webp Images",
"Converting WMF and EMF",
"Image and Photo Filters",
"Kernel Filters",
"Manipulate Different Image File Formats",
"Manipulating Images",
"Merge Images",
"Working With Drawing Images"
],
"description": "Category slug to run"
}
},
"required": [
"category"
]
}
}
}
},
"responses": {
"202": {
"description": "Job accepted"
},
"400": {
"description": "Missing or invalid category"
}
}
}
},
"/api/v1/status/{job_id}": {
"get": {
"summary": "Poll job status and logs",
"operationId": "getJobStatus",
"tags": [
"Pipeline"
],
"parameters": [
{
"name": "job_id",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Job status: queued/running/done/error"
},
"404": {
"description": "Job not found"
}
}
}
},
"/api/v1/stats": {
"get": {
"summary": "Overall agent statistics",
"operationId": "getStats",
"tags": [
"Stats"
],
"responses": {
"200": {
"description": "Pass rate, totals, category breakdown"
}
}
}
},
"/api/v1/results/{category}": {
"get": {
"summary": "Get results for a category",
"operationId": "getCategoryResults",
"tags": [
"Results"
],
"parameters": [
{
"name": "category",
"in": "path",
"required": true,
"schema": {
"type": "string",
"enum": [
"Conversion",
"Convert APNG",
"Convert CDR",
"Convert CMX Images",
"Convert DICOM Images",
"Convert EPS Images",
"Convert Open Document Graphics",
"Convert Raster Image",
"Convert SVG to Raster Images",
"Convert webp Images",
"Converting WMF and EMF",
"Image and Photo Filters",
"Kernel Filters",
"Manipulate Different Image File Formats",
"Manipulating Images",
"Merge Images",
"Working With Drawing Images"
]
}
}
],
"responses": {
"200": {
"description": "Task results with status and stems"
}
}
}
},
"/api/v1/categories": {
"get": {
"summary": "List all available categories",
"operationId": "getCategories",
"tags": [
"Categories"
],
"responses": {
"200": {
"description": "Array of category names and task counts"
}
}
}
},
"/api/v1/eval": {
"get": {
"summary": "Full evaluation report",
"operationId": "getEvalReport",
"tags": [
"Stats"
],
"responses": {
"200": {
"description": "Per-category pass/fail breakdown"
}
}
}
},
"/api/v1/code/{filename}": {
"get": {
"summary": "Retrieve generated C# source code",
"operationId": "getCode",
"tags": [
"Code"
],
"parameters": [
{
"name": "filename",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "C# source code as plain text"
}
}
}
},
"/llm.txt": {
"get": {
"summary": "LLM/AI manifest",
"operationId": "getLlmTxt",
"tags": [
"Discovery"
],
"responses": {
"200": {
"description": "AI-readable repo manifest"
}
}
}
},
"/.well-known/agent.json": {
"get": {
"summary": "Agent discovery card",
"operationId": "getAgentCard",
"tags": [
"Discovery"
],
"responses": {
"200": {
"description": "Standard agent card JSON"
}
}
}
}
},
"tags": [
{
"name": "Pipeline",
"description": "Submit and monitor example generation jobs"
},
{
"name": "Stats",
"description": "Agent statistics and evaluation reports"
},
{
"name": "Results",
"description": "Access generated example results"
},
{
"name": "Categories",
"description": "Browse available example categories"
},
{
"name": "Code",
"description": "Retrieve generated C# source code"
},
{
"name": "Discovery",
"description": "Agent discovery endpoints"
}
]
}