@digipair/skill-tensorflow 0.28.14 → 0.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema.en.json +71 -0
package/package.json
CHANGED
package/schema.en.json
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
{
|
2
|
+
"openapi": "3.0.0",
|
3
|
+
"info": {
|
4
|
+
"title": "@digipair/skill-tensorflow",
|
5
|
+
"summary": "Deep Learning Analysis",
|
6
|
+
"description": "This skill allows users to analyze data using Deep Learning.",
|
7
|
+
"version": "0.1.0",
|
8
|
+
"x-icon": "🤖"
|
9
|
+
},
|
10
|
+
"paths": {
|
11
|
+
"/cocoSsd": {
|
12
|
+
"post": {
|
13
|
+
"tags": ["service"],
|
14
|
+
"summary": "Detects objects",
|
15
|
+
"description": "Detects objects in an image",
|
16
|
+
"parameters": [
|
17
|
+
{
|
18
|
+
"name": "image",
|
19
|
+
"summary": "Image",
|
20
|
+
"required": true,
|
21
|
+
"description": "Image to analyze",
|
22
|
+
"schema": {
|
23
|
+
"type": "string"
|
24
|
+
}
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"name": "base",
|
28
|
+
"summary": "Base",
|
29
|
+
"required": false,
|
30
|
+
"description": "Base model (mobilenet_v1, mobilenet_v2, or lite_mobilenet_v2)",
|
31
|
+
"schema": {
|
32
|
+
"type": "string"
|
33
|
+
}
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"x-events": []
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"/faceDetection": {
|
40
|
+
"post": {
|
41
|
+
"tags": ["service"],
|
42
|
+
"summary": "Detects faces",
|
43
|
+
"description": "Detects faces in an image",
|
44
|
+
"parameters": [
|
45
|
+
{
|
46
|
+
"name": "image",
|
47
|
+
"summary": "Image",
|
48
|
+
"required": true,
|
49
|
+
"description": "Image to analyze",
|
50
|
+
"schema": {
|
51
|
+
"type": "string"
|
52
|
+
}
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"name": "runtime",
|
56
|
+
"summary": "Runtime environment",
|
57
|
+
"required": false,
|
58
|
+
"description": "Runtime environment (mediapipe or tfjs)",
|
59
|
+
"schema": {
|
60
|
+
"type": "string"
|
61
|
+
}
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"x-events": []
|
65
|
+
}
|
66
|
+
}
|
67
|
+
},
|
68
|
+
"components": {
|
69
|
+
"schemas": {}
|
70
|
+
}
|
71
|
+
}
|