faces-cli 1.2.0 → 1.3.1
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/dist/commands/auth/connect.d.ts +15 -0
- package/dist/commands/auth/connect.js +239 -0
- package/dist/commands/auth/connections.d.ts +11 -0
- package/dist/commands/auth/connections.js +28 -0
- package/dist/commands/auth/disconnect.d.ts +14 -0
- package/dist/commands/auth/disconnect.js +38 -0
- package/dist/commands/auth/login.js +5 -3
- package/dist/commands/auth/register.d.ts +1 -1
- package/dist/commands/auth/register.js +16 -6
- package/dist/commands/compile/import.d.ts +17 -0
- package/dist/commands/compile/import.js +81 -0
- package/dist/commands/face/create.js +2 -2
- package/dist/commands/face/get.js +1 -1
- package/dist/commands/face/list.js +1 -1
- package/oclif.manifest.json +679 -388
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -53,6 +53,200 @@
|
|
|
53
53
|
"state.js"
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
|
+
"auth:connect": {
|
|
57
|
+
"aliases": [],
|
|
58
|
+
"args": {
|
|
59
|
+
"provider": {
|
|
60
|
+
"description": "OAuth provider to connect",
|
|
61
|
+
"name": "provider",
|
|
62
|
+
"options": [
|
|
63
|
+
"openai"
|
|
64
|
+
],
|
|
65
|
+
"required": true
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
69
|
+
"examples": [
|
|
70
|
+
"<%= config.bin %> auth connect openai",
|
|
71
|
+
"<%= config.bin %> auth connect openai --manual"
|
|
72
|
+
],
|
|
73
|
+
"flags": {
|
|
74
|
+
"json": {
|
|
75
|
+
"description": "Format output as json.",
|
|
76
|
+
"helpGroup": "GLOBAL",
|
|
77
|
+
"name": "json",
|
|
78
|
+
"allowNo": false,
|
|
79
|
+
"type": "boolean"
|
|
80
|
+
},
|
|
81
|
+
"base-url": {
|
|
82
|
+
"description": "API base URL",
|
|
83
|
+
"env": "FACES_BASE_URL",
|
|
84
|
+
"name": "base-url",
|
|
85
|
+
"hasDynamicHelp": false,
|
|
86
|
+
"multiple": false,
|
|
87
|
+
"type": "option"
|
|
88
|
+
},
|
|
89
|
+
"token": {
|
|
90
|
+
"description": "JWT bearer token",
|
|
91
|
+
"env": "FACES_TOKEN",
|
|
92
|
+
"name": "token",
|
|
93
|
+
"hasDynamicHelp": false,
|
|
94
|
+
"multiple": false,
|
|
95
|
+
"type": "option"
|
|
96
|
+
},
|
|
97
|
+
"api-key": {
|
|
98
|
+
"description": "API key",
|
|
99
|
+
"env": "FACES_API_KEY",
|
|
100
|
+
"name": "api-key",
|
|
101
|
+
"hasDynamicHelp": false,
|
|
102
|
+
"multiple": false,
|
|
103
|
+
"type": "option"
|
|
104
|
+
},
|
|
105
|
+
"manual": {
|
|
106
|
+
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
107
|
+
"name": "manual",
|
|
108
|
+
"allowNo": false,
|
|
109
|
+
"type": "boolean"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"hasDynamicHelp": false,
|
|
113
|
+
"hiddenAliases": [],
|
|
114
|
+
"id": "auth:connect",
|
|
115
|
+
"pluginAlias": "faces-cli",
|
|
116
|
+
"pluginName": "faces-cli",
|
|
117
|
+
"pluginType": "core",
|
|
118
|
+
"strict": true,
|
|
119
|
+
"enableJsonFlag": true,
|
|
120
|
+
"isESM": true,
|
|
121
|
+
"relativePath": [
|
|
122
|
+
"dist",
|
|
123
|
+
"commands",
|
|
124
|
+
"auth",
|
|
125
|
+
"connect.js"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"auth:connections": {
|
|
129
|
+
"aliases": [],
|
|
130
|
+
"args": {},
|
|
131
|
+
"description": "List connected OAuth provider accounts",
|
|
132
|
+
"examples": [
|
|
133
|
+
"<%= config.bin %> auth connections",
|
|
134
|
+
"<%= config.bin %> auth connections --json"
|
|
135
|
+
],
|
|
136
|
+
"flags": {
|
|
137
|
+
"json": {
|
|
138
|
+
"description": "Format output as json.",
|
|
139
|
+
"helpGroup": "GLOBAL",
|
|
140
|
+
"name": "json",
|
|
141
|
+
"allowNo": false,
|
|
142
|
+
"type": "boolean"
|
|
143
|
+
},
|
|
144
|
+
"base-url": {
|
|
145
|
+
"description": "API base URL",
|
|
146
|
+
"env": "FACES_BASE_URL",
|
|
147
|
+
"name": "base-url",
|
|
148
|
+
"hasDynamicHelp": false,
|
|
149
|
+
"multiple": false,
|
|
150
|
+
"type": "option"
|
|
151
|
+
},
|
|
152
|
+
"token": {
|
|
153
|
+
"description": "JWT bearer token",
|
|
154
|
+
"env": "FACES_TOKEN",
|
|
155
|
+
"name": "token",
|
|
156
|
+
"hasDynamicHelp": false,
|
|
157
|
+
"multiple": false,
|
|
158
|
+
"type": "option"
|
|
159
|
+
},
|
|
160
|
+
"api-key": {
|
|
161
|
+
"description": "API key",
|
|
162
|
+
"env": "FACES_API_KEY",
|
|
163
|
+
"name": "api-key",
|
|
164
|
+
"hasDynamicHelp": false,
|
|
165
|
+
"multiple": false,
|
|
166
|
+
"type": "option"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"hasDynamicHelp": false,
|
|
170
|
+
"hiddenAliases": [],
|
|
171
|
+
"id": "auth:connections",
|
|
172
|
+
"pluginAlias": "faces-cli",
|
|
173
|
+
"pluginName": "faces-cli",
|
|
174
|
+
"pluginType": "core",
|
|
175
|
+
"strict": true,
|
|
176
|
+
"enableJsonFlag": true,
|
|
177
|
+
"isESM": true,
|
|
178
|
+
"relativePath": [
|
|
179
|
+
"dist",
|
|
180
|
+
"commands",
|
|
181
|
+
"auth",
|
|
182
|
+
"connections.js"
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"auth:disconnect": {
|
|
186
|
+
"aliases": [],
|
|
187
|
+
"args": {
|
|
188
|
+
"provider": {
|
|
189
|
+
"description": "OAuth provider to disconnect",
|
|
190
|
+
"name": "provider",
|
|
191
|
+
"options": [
|
|
192
|
+
"openai"
|
|
193
|
+
],
|
|
194
|
+
"required": true
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
198
|
+
"examples": [
|
|
199
|
+
"<%= config.bin %> auth disconnect openai"
|
|
200
|
+
],
|
|
201
|
+
"flags": {
|
|
202
|
+
"json": {
|
|
203
|
+
"description": "Format output as json.",
|
|
204
|
+
"helpGroup": "GLOBAL",
|
|
205
|
+
"name": "json",
|
|
206
|
+
"allowNo": false,
|
|
207
|
+
"type": "boolean"
|
|
208
|
+
},
|
|
209
|
+
"base-url": {
|
|
210
|
+
"description": "API base URL",
|
|
211
|
+
"env": "FACES_BASE_URL",
|
|
212
|
+
"name": "base-url",
|
|
213
|
+
"hasDynamicHelp": false,
|
|
214
|
+
"multiple": false,
|
|
215
|
+
"type": "option"
|
|
216
|
+
},
|
|
217
|
+
"token": {
|
|
218
|
+
"description": "JWT bearer token",
|
|
219
|
+
"env": "FACES_TOKEN",
|
|
220
|
+
"name": "token",
|
|
221
|
+
"hasDynamicHelp": false,
|
|
222
|
+
"multiple": false,
|
|
223
|
+
"type": "option"
|
|
224
|
+
},
|
|
225
|
+
"api-key": {
|
|
226
|
+
"description": "API key",
|
|
227
|
+
"env": "FACES_API_KEY",
|
|
228
|
+
"name": "api-key",
|
|
229
|
+
"hasDynamicHelp": false,
|
|
230
|
+
"multiple": false,
|
|
231
|
+
"type": "option"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"hasDynamicHelp": false,
|
|
235
|
+
"hiddenAliases": [],
|
|
236
|
+
"id": "auth:disconnect",
|
|
237
|
+
"pluginAlias": "faces-cli",
|
|
238
|
+
"pluginName": "faces-cli",
|
|
239
|
+
"pluginType": "core",
|
|
240
|
+
"strict": true,
|
|
241
|
+
"enableJsonFlag": true,
|
|
242
|
+
"isESM": true,
|
|
243
|
+
"relativePath": [
|
|
244
|
+
"dist",
|
|
245
|
+
"commands",
|
|
246
|
+
"auth",
|
|
247
|
+
"disconnect.js"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
56
250
|
"auth:login": {
|
|
57
251
|
"aliases": [],
|
|
58
252
|
"args": {},
|
|
@@ -281,9 +475,8 @@
|
|
|
281
475
|
"type": "option"
|
|
282
476
|
},
|
|
283
477
|
"name": {
|
|
284
|
-
"description": "Display name",
|
|
478
|
+
"description": "Display name (defaults to username)",
|
|
285
479
|
"name": "name",
|
|
286
|
-
"required": true,
|
|
287
480
|
"hasDynamicHelp": false,
|
|
288
481
|
"multiple": false,
|
|
289
482
|
"type": "option"
|
|
@@ -652,10 +845,16 @@
|
|
|
652
845
|
"responses.js"
|
|
653
846
|
]
|
|
654
847
|
},
|
|
655
|
-
"
|
|
848
|
+
"compile:import": {
|
|
656
849
|
"aliases": [],
|
|
657
|
-
"args": {
|
|
658
|
-
|
|
850
|
+
"args": {
|
|
851
|
+
"face_id": {
|
|
852
|
+
"description": "Face ID or username",
|
|
853
|
+
"name": "face_id",
|
|
854
|
+
"required": true
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
659
858
|
"flags": {
|
|
660
859
|
"json": {
|
|
661
860
|
"description": "Format output as json.",
|
|
@@ -687,11 +886,50 @@
|
|
|
687
886
|
"hasDynamicHelp": false,
|
|
688
887
|
"multiple": false,
|
|
689
888
|
"type": "option"
|
|
889
|
+
},
|
|
890
|
+
"url": {
|
|
891
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
892
|
+
"name": "url",
|
|
893
|
+
"required": true,
|
|
894
|
+
"hasDynamicHelp": false,
|
|
895
|
+
"multiple": false,
|
|
896
|
+
"type": "option"
|
|
897
|
+
},
|
|
898
|
+
"type": {
|
|
899
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
900
|
+
"name": "type",
|
|
901
|
+
"default": "document",
|
|
902
|
+
"hasDynamicHelp": false,
|
|
903
|
+
"multiple": false,
|
|
904
|
+
"options": [
|
|
905
|
+
"document",
|
|
906
|
+
"thread"
|
|
907
|
+
],
|
|
908
|
+
"type": "option"
|
|
909
|
+
},
|
|
910
|
+
"perspective": {
|
|
911
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
912
|
+
"name": "perspective",
|
|
913
|
+
"default": "third-person",
|
|
914
|
+
"hasDynamicHelp": false,
|
|
915
|
+
"multiple": false,
|
|
916
|
+
"options": [
|
|
917
|
+
"first-person",
|
|
918
|
+
"third-person"
|
|
919
|
+
],
|
|
920
|
+
"type": "option"
|
|
921
|
+
},
|
|
922
|
+
"face-speaker": {
|
|
923
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
924
|
+
"name": "face-speaker",
|
|
925
|
+
"hasDynamicHelp": false,
|
|
926
|
+
"multiple": false,
|
|
927
|
+
"type": "option"
|
|
690
928
|
}
|
|
691
929
|
},
|
|
692
930
|
"hasDynamicHelp": false,
|
|
693
931
|
"hiddenAliases": [],
|
|
694
|
-
"id": "
|
|
932
|
+
"id": "compile:import",
|
|
695
933
|
"pluginAlias": "faces-cli",
|
|
696
934
|
"pluginName": "faces-cli",
|
|
697
935
|
"pluginType": "core",
|
|
@@ -701,14 +939,14 @@
|
|
|
701
939
|
"relativePath": [
|
|
702
940
|
"dist",
|
|
703
941
|
"commands",
|
|
704
|
-
"
|
|
705
|
-
"
|
|
942
|
+
"compile",
|
|
943
|
+
"import.js"
|
|
706
944
|
]
|
|
707
945
|
},
|
|
708
|
-
"
|
|
946
|
+
"config:clear": {
|
|
709
947
|
"aliases": [],
|
|
710
948
|
"args": {},
|
|
711
|
-
"description": "
|
|
949
|
+
"description": "Delete all saved credentials and config",
|
|
712
950
|
"flags": {
|
|
713
951
|
"json": {
|
|
714
952
|
"description": "Format output as json.",
|
|
@@ -740,11 +978,17 @@
|
|
|
740
978
|
"hasDynamicHelp": false,
|
|
741
979
|
"multiple": false,
|
|
742
980
|
"type": "option"
|
|
981
|
+
},
|
|
982
|
+
"yes": {
|
|
983
|
+
"description": "Skip confirmation",
|
|
984
|
+
"name": "yes",
|
|
985
|
+
"allowNo": false,
|
|
986
|
+
"type": "boolean"
|
|
743
987
|
}
|
|
744
988
|
},
|
|
745
989
|
"hasDynamicHelp": false,
|
|
746
990
|
"hiddenAliases": [],
|
|
747
|
-
"id": "
|
|
991
|
+
"id": "config:clear",
|
|
748
992
|
"pluginAlias": "faces-cli",
|
|
749
993
|
"pluginName": "faces-cli",
|
|
750
994
|
"pluginType": "core",
|
|
@@ -754,14 +998,25 @@
|
|
|
754
998
|
"relativePath": [
|
|
755
999
|
"dist",
|
|
756
1000
|
"commands",
|
|
757
|
-
"
|
|
758
|
-
"
|
|
1001
|
+
"config",
|
|
1002
|
+
"clear.js"
|
|
759
1003
|
]
|
|
760
1004
|
},
|
|
761
|
-
"
|
|
1005
|
+
"config:set": {
|
|
762
1006
|
"aliases": [],
|
|
763
|
-
"args": {
|
|
764
|
-
|
|
1007
|
+
"args": {
|
|
1008
|
+
"key": {
|
|
1009
|
+
"description": "Config key",
|
|
1010
|
+
"name": "key",
|
|
1011
|
+
"required": true
|
|
1012
|
+
},
|
|
1013
|
+
"value": {
|
|
1014
|
+
"description": "Config value",
|
|
1015
|
+
"name": "value",
|
|
1016
|
+
"required": true
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
765
1020
|
"flags": {
|
|
766
1021
|
"json": {
|
|
767
1022
|
"description": "Format output as json.",
|
|
@@ -793,23 +1048,11 @@
|
|
|
793
1048
|
"hasDynamicHelp": false,
|
|
794
1049
|
"multiple": false,
|
|
795
1050
|
"type": "option"
|
|
796
|
-
},
|
|
797
|
-
"plan": {
|
|
798
|
-
"description": "Plan to upgrade to",
|
|
799
|
-
"name": "plan",
|
|
800
|
-
"required": true,
|
|
801
|
-
"hasDynamicHelp": false,
|
|
802
|
-
"multiple": false,
|
|
803
|
-
"options": [
|
|
804
|
-
"standard",
|
|
805
|
-
"pro"
|
|
806
|
-
],
|
|
807
|
-
"type": "option"
|
|
808
1051
|
}
|
|
809
1052
|
},
|
|
810
1053
|
"hasDynamicHelp": false,
|
|
811
1054
|
"hiddenAliases": [],
|
|
812
|
-
"id": "
|
|
1055
|
+
"id": "config:set",
|
|
813
1056
|
"pluginAlias": "faces-cli",
|
|
814
1057
|
"pluginName": "faces-cli",
|
|
815
1058
|
"pluginType": "core",
|
|
@@ -819,14 +1062,14 @@
|
|
|
819
1062
|
"relativePath": [
|
|
820
1063
|
"dist",
|
|
821
1064
|
"commands",
|
|
822
|
-
"
|
|
823
|
-
"
|
|
1065
|
+
"config",
|
|
1066
|
+
"set.js"
|
|
824
1067
|
]
|
|
825
1068
|
},
|
|
826
|
-
"
|
|
1069
|
+
"config:show": {
|
|
827
1070
|
"aliases": [],
|
|
828
1071
|
"args": {},
|
|
829
|
-
"description": "
|
|
1072
|
+
"description": "Print current config (credentials are masked)",
|
|
830
1073
|
"flags": {
|
|
831
1074
|
"json": {
|
|
832
1075
|
"description": "Format output as json.",
|
|
@@ -858,18 +1101,11 @@
|
|
|
858
1101
|
"hasDynamicHelp": false,
|
|
859
1102
|
"multiple": false,
|
|
860
1103
|
"type": "option"
|
|
861
|
-
},
|
|
862
|
-
"provider": {
|
|
863
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
864
|
-
"name": "provider",
|
|
865
|
-
"hasDynamicHelp": false,
|
|
866
|
-
"multiple": false,
|
|
867
|
-
"type": "option"
|
|
868
1104
|
}
|
|
869
1105
|
},
|
|
870
1106
|
"hasDynamicHelp": false,
|
|
871
1107
|
"hiddenAliases": [],
|
|
872
|
-
"id": "
|
|
1108
|
+
"id": "config:show",
|
|
873
1109
|
"pluginAlias": "faces-cli",
|
|
874
1110
|
"pluginName": "faces-cli",
|
|
875
1111
|
"pluginType": "core",
|
|
@@ -879,14 +1115,14 @@
|
|
|
879
1115
|
"relativePath": [
|
|
880
1116
|
"dist",
|
|
881
1117
|
"commands",
|
|
882
|
-
"
|
|
883
|
-
"
|
|
1118
|
+
"config",
|
|
1119
|
+
"show.js"
|
|
884
1120
|
]
|
|
885
1121
|
},
|
|
886
|
-
"
|
|
1122
|
+
"face:create": {
|
|
887
1123
|
"aliases": [],
|
|
888
1124
|
"args": {},
|
|
889
|
-
"description": "
|
|
1125
|
+
"description": "Create a new face",
|
|
890
1126
|
"flags": {
|
|
891
1127
|
"json": {
|
|
892
1128
|
"description": "Format output as json.",
|
|
@@ -918,11 +1154,48 @@
|
|
|
918
1154
|
"hasDynamicHelp": false,
|
|
919
1155
|
"multiple": false,
|
|
920
1156
|
"type": "option"
|
|
1157
|
+
},
|
|
1158
|
+
"name": {
|
|
1159
|
+
"description": "Display name",
|
|
1160
|
+
"name": "name",
|
|
1161
|
+
"required": true,
|
|
1162
|
+
"hasDynamicHelp": false,
|
|
1163
|
+
"multiple": false,
|
|
1164
|
+
"type": "option"
|
|
1165
|
+
},
|
|
1166
|
+
"username": {
|
|
1167
|
+
"description": "Unique username slug",
|
|
1168
|
+
"name": "username",
|
|
1169
|
+
"required": true,
|
|
1170
|
+
"hasDynamicHelp": false,
|
|
1171
|
+
"multiple": false,
|
|
1172
|
+
"type": "option"
|
|
1173
|
+
},
|
|
1174
|
+
"formula": {
|
|
1175
|
+
"description": "Boolean formula over owned concrete face usernames (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
1176
|
+
"name": "formula",
|
|
1177
|
+
"hasDynamicHelp": false,
|
|
1178
|
+
"multiple": false,
|
|
1179
|
+
"type": "option"
|
|
1180
|
+
},
|
|
1181
|
+
"attr": {
|
|
1182
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
1183
|
+
"name": "attr",
|
|
1184
|
+
"hasDynamicHelp": false,
|
|
1185
|
+
"multiple": true,
|
|
1186
|
+
"type": "option"
|
|
1187
|
+
},
|
|
1188
|
+
"tool": {
|
|
1189
|
+
"description": "Tool name to enable (repeatable)",
|
|
1190
|
+
"name": "tool",
|
|
1191
|
+
"hasDynamicHelp": false,
|
|
1192
|
+
"multiple": true,
|
|
1193
|
+
"type": "option"
|
|
921
1194
|
}
|
|
922
1195
|
},
|
|
923
1196
|
"hasDynamicHelp": false,
|
|
924
1197
|
"hiddenAliases": [],
|
|
925
|
-
"id": "
|
|
1198
|
+
"id": "face:create",
|
|
926
1199
|
"pluginAlias": "faces-cli",
|
|
927
1200
|
"pluginName": "faces-cli",
|
|
928
1201
|
"pluginType": "core",
|
|
@@ -932,14 +1205,20 @@
|
|
|
932
1205
|
"relativePath": [
|
|
933
1206
|
"dist",
|
|
934
1207
|
"commands",
|
|
935
|
-
"
|
|
936
|
-
"
|
|
1208
|
+
"face",
|
|
1209
|
+
"create.js"
|
|
937
1210
|
]
|
|
938
1211
|
},
|
|
939
|
-
"
|
|
1212
|
+
"face:delete": {
|
|
940
1213
|
"aliases": [],
|
|
941
|
-
"args": {
|
|
942
|
-
|
|
1214
|
+
"args": {
|
|
1215
|
+
"face_id": {
|
|
1216
|
+
"description": "Face ID or username",
|
|
1217
|
+
"name": "face_id",
|
|
1218
|
+
"required": true
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"description": "Delete a face permanently",
|
|
943
1222
|
"flags": {
|
|
944
1223
|
"json": {
|
|
945
1224
|
"description": "Format output as json.",
|
|
@@ -971,11 +1250,17 @@
|
|
|
971
1250
|
"hasDynamicHelp": false,
|
|
972
1251
|
"multiple": false,
|
|
973
1252
|
"type": "option"
|
|
1253
|
+
},
|
|
1254
|
+
"yes": {
|
|
1255
|
+
"description": "Skip confirmation",
|
|
1256
|
+
"name": "yes",
|
|
1257
|
+
"allowNo": false,
|
|
1258
|
+
"type": "boolean"
|
|
974
1259
|
}
|
|
975
1260
|
},
|
|
976
1261
|
"hasDynamicHelp": false,
|
|
977
1262
|
"hiddenAliases": [],
|
|
978
|
-
"id": "
|
|
1263
|
+
"id": "face:delete",
|
|
979
1264
|
"pluginAlias": "faces-cli",
|
|
980
1265
|
"pluginName": "faces-cli",
|
|
981
1266
|
"pluginType": "core",
|
|
@@ -985,14 +1270,14 @@
|
|
|
985
1270
|
"relativePath": [
|
|
986
1271
|
"dist",
|
|
987
1272
|
"commands",
|
|
988
|
-
"
|
|
989
|
-
"
|
|
1273
|
+
"face",
|
|
1274
|
+
"delete.js"
|
|
990
1275
|
]
|
|
991
1276
|
},
|
|
992
|
-
"
|
|
1277
|
+
"face:diff": {
|
|
993
1278
|
"aliases": [],
|
|
994
1279
|
"args": {},
|
|
995
|
-
"description": "
|
|
1280
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
996
1281
|
"flags": {
|
|
997
1282
|
"json": {
|
|
998
1283
|
"description": "Format output as json.",
|
|
@@ -1025,25 +1310,18 @@
|
|
|
1025
1310
|
"multiple": false,
|
|
1026
1311
|
"type": "option"
|
|
1027
1312
|
},
|
|
1028
|
-
"
|
|
1029
|
-
"description": "
|
|
1030
|
-
"name": "
|
|
1313
|
+
"face": {
|
|
1314
|
+
"description": "Face username to include (repeatable, min 2)",
|
|
1315
|
+
"name": "face",
|
|
1031
1316
|
"required": true,
|
|
1032
1317
|
"hasDynamicHelp": false,
|
|
1033
|
-
"multiple":
|
|
1034
|
-
"type": "option"
|
|
1035
|
-
},
|
|
1036
|
-
"payment-ref": {
|
|
1037
|
-
"description": "Payment reference (admin/test path)",
|
|
1038
|
-
"name": "payment-ref",
|
|
1039
|
-
"hasDynamicHelp": false,
|
|
1040
|
-
"multiple": false,
|
|
1318
|
+
"multiple": true,
|
|
1041
1319
|
"type": "option"
|
|
1042
1320
|
}
|
|
1043
1321
|
},
|
|
1044
1322
|
"hasDynamicHelp": false,
|
|
1045
1323
|
"hiddenAliases": [],
|
|
1046
|
-
"id": "
|
|
1324
|
+
"id": "face:diff",
|
|
1047
1325
|
"pluginAlias": "faces-cli",
|
|
1048
1326
|
"pluginName": "faces-cli",
|
|
1049
1327
|
"pluginType": "core",
|
|
@@ -1053,14 +1331,20 @@
|
|
|
1053
1331
|
"relativePath": [
|
|
1054
1332
|
"dist",
|
|
1055
1333
|
"commands",
|
|
1056
|
-
"
|
|
1057
|
-
"
|
|
1334
|
+
"face",
|
|
1335
|
+
"diff.js"
|
|
1058
1336
|
]
|
|
1059
1337
|
},
|
|
1060
|
-
"
|
|
1338
|
+
"face:get": {
|
|
1061
1339
|
"aliases": [],
|
|
1062
|
-
"args": {
|
|
1063
|
-
|
|
1340
|
+
"args": {
|
|
1341
|
+
"face_id": {
|
|
1342
|
+
"description": "Face ID or username",
|
|
1343
|
+
"name": "face_id",
|
|
1344
|
+
"required": true
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
"description": "Get details for a face by ID or username",
|
|
1064
1348
|
"flags": {
|
|
1065
1349
|
"json": {
|
|
1066
1350
|
"description": "Format output as json.",
|
|
@@ -1092,38 +1376,11 @@
|
|
|
1092
1376
|
"hasDynamicHelp": false,
|
|
1093
1377
|
"multiple": false,
|
|
1094
1378
|
"type": "option"
|
|
1095
|
-
},
|
|
1096
|
-
"group-by": {
|
|
1097
|
-
"description": "Group results",
|
|
1098
|
-
"name": "group-by",
|
|
1099
|
-
"hasDynamicHelp": false,
|
|
1100
|
-
"multiple": false,
|
|
1101
|
-
"options": [
|
|
1102
|
-
"api_key",
|
|
1103
|
-
"model",
|
|
1104
|
-
"llm",
|
|
1105
|
-
"date"
|
|
1106
|
-
],
|
|
1107
|
-
"type": "option"
|
|
1108
|
-
},
|
|
1109
|
-
"from": {
|
|
1110
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
1111
|
-
"name": "from",
|
|
1112
|
-
"hasDynamicHelp": false,
|
|
1113
|
-
"multiple": false,
|
|
1114
|
-
"type": "option"
|
|
1115
|
-
},
|
|
1116
|
-
"to": {
|
|
1117
|
-
"description": "End date (YYYY-MM-DD)",
|
|
1118
|
-
"name": "to",
|
|
1119
|
-
"hasDynamicHelp": false,
|
|
1120
|
-
"multiple": false,
|
|
1121
|
-
"type": "option"
|
|
1122
1379
|
}
|
|
1123
1380
|
},
|
|
1124
1381
|
"hasDynamicHelp": false,
|
|
1125
1382
|
"hiddenAliases": [],
|
|
1126
|
-
"id": "
|
|
1383
|
+
"id": "face:get",
|
|
1127
1384
|
"pluginAlias": "faces-cli",
|
|
1128
1385
|
"pluginName": "faces-cli",
|
|
1129
1386
|
"pluginType": "core",
|
|
@@ -1133,14 +1390,14 @@
|
|
|
1133
1390
|
"relativePath": [
|
|
1134
1391
|
"dist",
|
|
1135
1392
|
"commands",
|
|
1136
|
-
"
|
|
1137
|
-
"
|
|
1393
|
+
"face",
|
|
1394
|
+
"get.js"
|
|
1138
1395
|
]
|
|
1139
1396
|
},
|
|
1140
|
-
"
|
|
1397
|
+
"face:list": {
|
|
1141
1398
|
"aliases": [],
|
|
1142
1399
|
"args": {},
|
|
1143
|
-
"description": "
|
|
1400
|
+
"description": "List all owned faces",
|
|
1144
1401
|
"flags": {
|
|
1145
1402
|
"json": {
|
|
1146
1403
|
"description": "Format output as json.",
|
|
@@ -1172,17 +1429,11 @@
|
|
|
1172
1429
|
"hasDynamicHelp": false,
|
|
1173
1430
|
"multiple": false,
|
|
1174
1431
|
"type": "option"
|
|
1175
|
-
},
|
|
1176
|
-
"yes": {
|
|
1177
|
-
"description": "Skip confirmation",
|
|
1178
|
-
"name": "yes",
|
|
1179
|
-
"allowNo": false,
|
|
1180
|
-
"type": "boolean"
|
|
1181
1432
|
}
|
|
1182
1433
|
},
|
|
1183
1434
|
"hasDynamicHelp": false,
|
|
1184
1435
|
"hiddenAliases": [],
|
|
1185
|
-
"id": "
|
|
1436
|
+
"id": "face:list",
|
|
1186
1437
|
"pluginAlias": "faces-cli",
|
|
1187
1438
|
"pluginName": "faces-cli",
|
|
1188
1439
|
"pluginType": "core",
|
|
@@ -1192,25 +1443,20 @@
|
|
|
1192
1443
|
"relativePath": [
|
|
1193
1444
|
"dist",
|
|
1194
1445
|
"commands",
|
|
1195
|
-
"
|
|
1196
|
-
"
|
|
1446
|
+
"face",
|
|
1447
|
+
"list.js"
|
|
1197
1448
|
]
|
|
1198
1449
|
},
|
|
1199
|
-
"
|
|
1450
|
+
"face:neighbors": {
|
|
1200
1451
|
"aliases": [],
|
|
1201
1452
|
"args": {
|
|
1202
|
-
"
|
|
1203
|
-
"description": "
|
|
1204
|
-
"name": "
|
|
1205
|
-
"required": true
|
|
1206
|
-
},
|
|
1207
|
-
"value": {
|
|
1208
|
-
"description": "Config value",
|
|
1209
|
-
"name": "value",
|
|
1453
|
+
"face_id": {
|
|
1454
|
+
"description": "Face username",
|
|
1455
|
+
"name": "face_id",
|
|
1210
1456
|
"required": true
|
|
1211
1457
|
}
|
|
1212
1458
|
},
|
|
1213
|
-
"description": "
|
|
1459
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
1214
1460
|
"flags": {
|
|
1215
1461
|
"json": {
|
|
1216
1462
|
"description": "Format output as json.",
|
|
@@ -1242,11 +1488,45 @@
|
|
|
1242
1488
|
"hasDynamicHelp": false,
|
|
1243
1489
|
"multiple": false,
|
|
1244
1490
|
"type": "option"
|
|
1491
|
+
},
|
|
1492
|
+
"k": {
|
|
1493
|
+
"description": "Number of results (1–20)",
|
|
1494
|
+
"name": "k",
|
|
1495
|
+
"default": 5,
|
|
1496
|
+
"hasDynamicHelp": false,
|
|
1497
|
+
"multiple": false,
|
|
1498
|
+
"type": "option"
|
|
1499
|
+
},
|
|
1500
|
+
"component": {
|
|
1501
|
+
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
1502
|
+
"name": "component",
|
|
1503
|
+
"default": "face",
|
|
1504
|
+
"hasDynamicHelp": false,
|
|
1505
|
+
"multiple": false,
|
|
1506
|
+
"options": [
|
|
1507
|
+
"face",
|
|
1508
|
+
"beta",
|
|
1509
|
+
"delta",
|
|
1510
|
+
"epsilon"
|
|
1511
|
+
],
|
|
1512
|
+
"type": "option"
|
|
1513
|
+
},
|
|
1514
|
+
"direction": {
|
|
1515
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
1516
|
+
"name": "direction",
|
|
1517
|
+
"default": "nearest",
|
|
1518
|
+
"hasDynamicHelp": false,
|
|
1519
|
+
"multiple": false,
|
|
1520
|
+
"options": [
|
|
1521
|
+
"nearest",
|
|
1522
|
+
"furthest"
|
|
1523
|
+
],
|
|
1524
|
+
"type": "option"
|
|
1245
1525
|
}
|
|
1246
1526
|
},
|
|
1247
1527
|
"hasDynamicHelp": false,
|
|
1248
1528
|
"hiddenAliases": [],
|
|
1249
|
-
"id": "
|
|
1529
|
+
"id": "face:neighbors",
|
|
1250
1530
|
"pluginAlias": "faces-cli",
|
|
1251
1531
|
"pluginName": "faces-cli",
|
|
1252
1532
|
"pluginType": "core",
|
|
@@ -1256,14 +1536,14 @@
|
|
|
1256
1536
|
"relativePath": [
|
|
1257
1537
|
"dist",
|
|
1258
1538
|
"commands",
|
|
1259
|
-
"
|
|
1260
|
-
"
|
|
1539
|
+
"face",
|
|
1540
|
+
"neighbors.js"
|
|
1261
1541
|
]
|
|
1262
1542
|
},
|
|
1263
|
-
"
|
|
1543
|
+
"face:stats": {
|
|
1264
1544
|
"aliases": [],
|
|
1265
1545
|
"args": {},
|
|
1266
|
-
"description": "
|
|
1546
|
+
"description": "Compile and chat stats for all owned faces",
|
|
1267
1547
|
"flags": {
|
|
1268
1548
|
"json": {
|
|
1269
1549
|
"description": "Format output as json.",
|
|
@@ -1299,7 +1579,7 @@
|
|
|
1299
1579
|
},
|
|
1300
1580
|
"hasDynamicHelp": false,
|
|
1301
1581
|
"hiddenAliases": [],
|
|
1302
|
-
"id": "
|
|
1582
|
+
"id": "face:stats",
|
|
1303
1583
|
"pluginAlias": "faces-cli",
|
|
1304
1584
|
"pluginName": "faces-cli",
|
|
1305
1585
|
"pluginType": "core",
|
|
@@ -1309,14 +1589,20 @@
|
|
|
1309
1589
|
"relativePath": [
|
|
1310
1590
|
"dist",
|
|
1311
1591
|
"commands",
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1592
|
+
"face",
|
|
1593
|
+
"stats.js"
|
|
1314
1594
|
]
|
|
1315
1595
|
},
|
|
1316
|
-
"face:
|
|
1596
|
+
"face:update": {
|
|
1317
1597
|
"aliases": [],
|
|
1318
|
-
"args": {
|
|
1319
|
-
|
|
1598
|
+
"args": {
|
|
1599
|
+
"face_id": {
|
|
1600
|
+
"description": "Face ID or username",
|
|
1601
|
+
"name": "face_id",
|
|
1602
|
+
"required": true
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
"description": "Update a face's metadata",
|
|
1320
1606
|
"flags": {
|
|
1321
1607
|
"json": {
|
|
1322
1608
|
"description": "Format output as json.",
|
|
@@ -1350,37 +1636,28 @@
|
|
|
1350
1636
|
"type": "option"
|
|
1351
1637
|
},
|
|
1352
1638
|
"name": {
|
|
1353
|
-
"description": "
|
|
1639
|
+
"description": "New display name",
|
|
1354
1640
|
"name": "name",
|
|
1355
|
-
"required": true,
|
|
1356
|
-
"hasDynamicHelp": false,
|
|
1357
|
-
"multiple": false,
|
|
1358
|
-
"type": "option"
|
|
1359
|
-
},
|
|
1360
|
-
"username": {
|
|
1361
|
-
"description": "Unique username slug",
|
|
1362
|
-
"name": "username",
|
|
1363
|
-
"required": true,
|
|
1364
1641
|
"hasDynamicHelp": false,
|
|
1365
1642
|
"multiple": false,
|
|
1366
1643
|
"type": "option"
|
|
1367
1644
|
},
|
|
1368
1645
|
"formula": {
|
|
1369
|
-
"description": "
|
|
1646
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
1370
1647
|
"name": "formula",
|
|
1371
1648
|
"hasDynamicHelp": false,
|
|
1372
1649
|
"multiple": false,
|
|
1373
1650
|
"type": "option"
|
|
1374
1651
|
},
|
|
1375
1652
|
"attr": {
|
|
1376
|
-
"description": "
|
|
1653
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
1377
1654
|
"name": "attr",
|
|
1378
1655
|
"hasDynamicHelp": false,
|
|
1379
1656
|
"multiple": true,
|
|
1380
1657
|
"type": "option"
|
|
1381
1658
|
},
|
|
1382
1659
|
"tool": {
|
|
1383
|
-
"description": "Tool
|
|
1660
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
1384
1661
|
"name": "tool",
|
|
1385
1662
|
"hasDynamicHelp": false,
|
|
1386
1663
|
"multiple": true,
|
|
@@ -1389,7 +1666,7 @@
|
|
|
1389
1666
|
},
|
|
1390
1667
|
"hasDynamicHelp": false,
|
|
1391
1668
|
"hiddenAliases": [],
|
|
1392
|
-
"id": "face:
|
|
1669
|
+
"id": "face:update",
|
|
1393
1670
|
"pluginAlias": "faces-cli",
|
|
1394
1671
|
"pluginName": "faces-cli",
|
|
1395
1672
|
"pluginType": "core",
|
|
@@ -1400,10 +1677,10 @@
|
|
|
1400
1677
|
"dist",
|
|
1401
1678
|
"commands",
|
|
1402
1679
|
"face",
|
|
1403
|
-
"
|
|
1680
|
+
"update.js"
|
|
1404
1681
|
]
|
|
1405
1682
|
},
|
|
1406
|
-
"face:
|
|
1683
|
+
"face:upload": {
|
|
1407
1684
|
"aliases": [],
|
|
1408
1685
|
"args": {
|
|
1409
1686
|
"face_id": {
|
|
@@ -1412,7 +1689,7 @@
|
|
|
1412
1689
|
"required": true
|
|
1413
1690
|
}
|
|
1414
1691
|
},
|
|
1415
|
-
"description": "
|
|
1692
|
+
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
1416
1693
|
"flags": {
|
|
1417
1694
|
"json": {
|
|
1418
1695
|
"description": "Format output as json.",
|
|
@@ -1445,16 +1722,30 @@
|
|
|
1445
1722
|
"multiple": false,
|
|
1446
1723
|
"type": "option"
|
|
1447
1724
|
},
|
|
1448
|
-
"
|
|
1449
|
-
"description": "
|
|
1450
|
-
"name": "
|
|
1451
|
-
"
|
|
1452
|
-
"
|
|
1725
|
+
"file": {
|
|
1726
|
+
"description": "File to upload",
|
|
1727
|
+
"name": "file",
|
|
1728
|
+
"required": true,
|
|
1729
|
+
"hasDynamicHelp": false,
|
|
1730
|
+
"multiple": false,
|
|
1731
|
+
"type": "option"
|
|
1732
|
+
},
|
|
1733
|
+
"kind": {
|
|
1734
|
+
"description": "Upload kind: document or thread",
|
|
1735
|
+
"name": "kind",
|
|
1736
|
+
"default": "document",
|
|
1737
|
+
"hasDynamicHelp": false,
|
|
1738
|
+
"multiple": false,
|
|
1739
|
+
"options": [
|
|
1740
|
+
"document",
|
|
1741
|
+
"thread"
|
|
1742
|
+
],
|
|
1743
|
+
"type": "option"
|
|
1453
1744
|
}
|
|
1454
1745
|
},
|
|
1455
1746
|
"hasDynamicHelp": false,
|
|
1456
1747
|
"hiddenAliases": [],
|
|
1457
|
-
"id": "face:
|
|
1748
|
+
"id": "face:upload",
|
|
1458
1749
|
"pluginAlias": "faces-cli",
|
|
1459
1750
|
"pluginName": "faces-cli",
|
|
1460
1751
|
"pluginType": "core",
|
|
@@ -1465,13 +1756,13 @@
|
|
|
1465
1756
|
"dist",
|
|
1466
1757
|
"commands",
|
|
1467
1758
|
"face",
|
|
1468
|
-
"
|
|
1759
|
+
"upload.js"
|
|
1469
1760
|
]
|
|
1470
1761
|
},
|
|
1471
|
-
"
|
|
1762
|
+
"billing:balance": {
|
|
1472
1763
|
"aliases": [],
|
|
1473
1764
|
"args": {},
|
|
1474
|
-
"description": "
|
|
1765
|
+
"description": "Show credit balance and payment method status",
|
|
1475
1766
|
"flags": {
|
|
1476
1767
|
"json": {
|
|
1477
1768
|
"description": "Format output as json.",
|
|
@@ -1503,19 +1794,11 @@
|
|
|
1503
1794
|
"hasDynamicHelp": false,
|
|
1504
1795
|
"multiple": false,
|
|
1505
1796
|
"type": "option"
|
|
1506
|
-
},
|
|
1507
|
-
"face": {
|
|
1508
|
-
"description": "Face username to include (repeatable, min 2)",
|
|
1509
|
-
"name": "face",
|
|
1510
|
-
"required": true,
|
|
1511
|
-
"hasDynamicHelp": false,
|
|
1512
|
-
"multiple": true,
|
|
1513
|
-
"type": "option"
|
|
1514
1797
|
}
|
|
1515
1798
|
},
|
|
1516
1799
|
"hasDynamicHelp": false,
|
|
1517
1800
|
"hiddenAliases": [],
|
|
1518
|
-
"id": "
|
|
1801
|
+
"id": "billing:balance",
|
|
1519
1802
|
"pluginAlias": "faces-cli",
|
|
1520
1803
|
"pluginName": "faces-cli",
|
|
1521
1804
|
"pluginType": "core",
|
|
@@ -1525,20 +1808,14 @@
|
|
|
1525
1808
|
"relativePath": [
|
|
1526
1809
|
"dist",
|
|
1527
1810
|
"commands",
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1811
|
+
"billing",
|
|
1812
|
+
"balance.js"
|
|
1530
1813
|
]
|
|
1531
1814
|
},
|
|
1532
|
-
"
|
|
1815
|
+
"billing:card-setup": {
|
|
1533
1816
|
"aliases": [],
|
|
1534
|
-
"args": {
|
|
1535
|
-
|
|
1536
|
-
"description": "Face ID or username",
|
|
1537
|
-
"name": "face_id",
|
|
1538
|
-
"required": true
|
|
1539
|
-
}
|
|
1540
|
-
},
|
|
1541
|
-
"description": "Get details for a face by ID or username",
|
|
1817
|
+
"args": {},
|
|
1818
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
1542
1819
|
"flags": {
|
|
1543
1820
|
"json": {
|
|
1544
1821
|
"description": "Format output as json.",
|
|
@@ -1574,7 +1851,7 @@
|
|
|
1574
1851
|
},
|
|
1575
1852
|
"hasDynamicHelp": false,
|
|
1576
1853
|
"hiddenAliases": [],
|
|
1577
|
-
"id": "
|
|
1854
|
+
"id": "billing:card-setup",
|
|
1578
1855
|
"pluginAlias": "faces-cli",
|
|
1579
1856
|
"pluginName": "faces-cli",
|
|
1580
1857
|
"pluginType": "core",
|
|
@@ -1584,14 +1861,14 @@
|
|
|
1584
1861
|
"relativePath": [
|
|
1585
1862
|
"dist",
|
|
1586
1863
|
"commands",
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1864
|
+
"billing",
|
|
1865
|
+
"card-setup.js"
|
|
1589
1866
|
]
|
|
1590
1867
|
},
|
|
1591
|
-
"
|
|
1868
|
+
"billing:checkout": {
|
|
1592
1869
|
"aliases": [],
|
|
1593
1870
|
"args": {},
|
|
1594
|
-
"description": "
|
|
1871
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
1595
1872
|
"flags": {
|
|
1596
1873
|
"json": {
|
|
1597
1874
|
"description": "Format output as json.",
|
|
@@ -1623,11 +1900,23 @@
|
|
|
1623
1900
|
"hasDynamicHelp": false,
|
|
1624
1901
|
"multiple": false,
|
|
1625
1902
|
"type": "option"
|
|
1903
|
+
},
|
|
1904
|
+
"plan": {
|
|
1905
|
+
"description": "Plan to upgrade to",
|
|
1906
|
+
"name": "plan",
|
|
1907
|
+
"required": true,
|
|
1908
|
+
"hasDynamicHelp": false,
|
|
1909
|
+
"multiple": false,
|
|
1910
|
+
"options": [
|
|
1911
|
+
"standard",
|
|
1912
|
+
"pro"
|
|
1913
|
+
],
|
|
1914
|
+
"type": "option"
|
|
1626
1915
|
}
|
|
1627
1916
|
},
|
|
1628
1917
|
"hasDynamicHelp": false,
|
|
1629
1918
|
"hiddenAliases": [],
|
|
1630
|
-
"id": "
|
|
1919
|
+
"id": "billing:checkout",
|
|
1631
1920
|
"pluginAlias": "faces-cli",
|
|
1632
1921
|
"pluginName": "faces-cli",
|
|
1633
1922
|
"pluginType": "core",
|
|
@@ -1637,20 +1926,14 @@
|
|
|
1637
1926
|
"relativePath": [
|
|
1638
1927
|
"dist",
|
|
1639
1928
|
"commands",
|
|
1640
|
-
"
|
|
1641
|
-
"
|
|
1929
|
+
"billing",
|
|
1930
|
+
"checkout.js"
|
|
1642
1931
|
]
|
|
1643
1932
|
},
|
|
1644
|
-
"
|
|
1933
|
+
"billing:llm-costs": {
|
|
1645
1934
|
"aliases": [],
|
|
1646
|
-
"args": {
|
|
1647
|
-
|
|
1648
|
-
"description": "Face username",
|
|
1649
|
-
"name": "face_id",
|
|
1650
|
-
"required": true
|
|
1651
|
-
}
|
|
1652
|
-
},
|
|
1653
|
-
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
1935
|
+
"args": {},
|
|
1936
|
+
"description": "List available LLMs and their per-token costs",
|
|
1654
1937
|
"flags": {
|
|
1655
1938
|
"json": {
|
|
1656
1939
|
"description": "Format output as json.",
|
|
@@ -1683,44 +1966,70 @@
|
|
|
1683
1966
|
"multiple": false,
|
|
1684
1967
|
"type": "option"
|
|
1685
1968
|
},
|
|
1686
|
-
"
|
|
1687
|
-
"description": "
|
|
1688
|
-
"name": "
|
|
1689
|
-
"default": 5,
|
|
1969
|
+
"provider": {
|
|
1970
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
1971
|
+
"name": "provider",
|
|
1690
1972
|
"hasDynamicHelp": false,
|
|
1691
1973
|
"multiple": false,
|
|
1692
1974
|
"type": "option"
|
|
1975
|
+
}
|
|
1976
|
+
},
|
|
1977
|
+
"hasDynamicHelp": false,
|
|
1978
|
+
"hiddenAliases": [],
|
|
1979
|
+
"id": "billing:llm-costs",
|
|
1980
|
+
"pluginAlias": "faces-cli",
|
|
1981
|
+
"pluginName": "faces-cli",
|
|
1982
|
+
"pluginType": "core",
|
|
1983
|
+
"strict": true,
|
|
1984
|
+
"enableJsonFlag": true,
|
|
1985
|
+
"isESM": true,
|
|
1986
|
+
"relativePath": [
|
|
1987
|
+
"dist",
|
|
1988
|
+
"commands",
|
|
1989
|
+
"billing",
|
|
1990
|
+
"llm-costs.js"
|
|
1991
|
+
]
|
|
1992
|
+
},
|
|
1993
|
+
"billing:quota": {
|
|
1994
|
+
"aliases": [],
|
|
1995
|
+
"args": {},
|
|
1996
|
+
"description": "Show compile token quota and per-face stats",
|
|
1997
|
+
"flags": {
|
|
1998
|
+
"json": {
|
|
1999
|
+
"description": "Format output as json.",
|
|
2000
|
+
"helpGroup": "GLOBAL",
|
|
2001
|
+
"name": "json",
|
|
2002
|
+
"allowNo": false,
|
|
2003
|
+
"type": "boolean"
|
|
1693
2004
|
},
|
|
1694
|
-
"
|
|
1695
|
-
"description": "
|
|
1696
|
-
"
|
|
1697
|
-
"
|
|
2005
|
+
"base-url": {
|
|
2006
|
+
"description": "API base URL",
|
|
2007
|
+
"env": "FACES_BASE_URL",
|
|
2008
|
+
"name": "base-url",
|
|
1698
2009
|
"hasDynamicHelp": false,
|
|
1699
2010
|
"multiple": false,
|
|
1700
|
-
"options": [
|
|
1701
|
-
"face",
|
|
1702
|
-
"beta",
|
|
1703
|
-
"delta",
|
|
1704
|
-
"epsilon"
|
|
1705
|
-
],
|
|
1706
2011
|
"type": "option"
|
|
1707
2012
|
},
|
|
1708
|
-
"
|
|
1709
|
-
"description": "
|
|
1710
|
-
"
|
|
1711
|
-
"
|
|
2013
|
+
"token": {
|
|
2014
|
+
"description": "JWT bearer token",
|
|
2015
|
+
"env": "FACES_TOKEN",
|
|
2016
|
+
"name": "token",
|
|
2017
|
+
"hasDynamicHelp": false,
|
|
2018
|
+
"multiple": false,
|
|
2019
|
+
"type": "option"
|
|
2020
|
+
},
|
|
2021
|
+
"api-key": {
|
|
2022
|
+
"description": "API key",
|
|
2023
|
+
"env": "FACES_API_KEY",
|
|
2024
|
+
"name": "api-key",
|
|
1712
2025
|
"hasDynamicHelp": false,
|
|
1713
2026
|
"multiple": false,
|
|
1714
|
-
"options": [
|
|
1715
|
-
"nearest",
|
|
1716
|
-
"furthest"
|
|
1717
|
-
],
|
|
1718
2027
|
"type": "option"
|
|
1719
2028
|
}
|
|
1720
2029
|
},
|
|
1721
2030
|
"hasDynamicHelp": false,
|
|
1722
2031
|
"hiddenAliases": [],
|
|
1723
|
-
"id": "
|
|
2032
|
+
"id": "billing:quota",
|
|
1724
2033
|
"pluginAlias": "faces-cli",
|
|
1725
2034
|
"pluginName": "faces-cli",
|
|
1726
2035
|
"pluginType": "core",
|
|
@@ -1730,14 +2039,14 @@
|
|
|
1730
2039
|
"relativePath": [
|
|
1731
2040
|
"dist",
|
|
1732
2041
|
"commands",
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
2042
|
+
"billing",
|
|
2043
|
+
"quota.js"
|
|
1735
2044
|
]
|
|
1736
2045
|
},
|
|
1737
|
-
"
|
|
2046
|
+
"billing:subscription": {
|
|
1738
2047
|
"aliases": [],
|
|
1739
2048
|
"args": {},
|
|
1740
|
-
"description": "
|
|
2049
|
+
"description": "Show current plan, face count, and renewal date",
|
|
1741
2050
|
"flags": {
|
|
1742
2051
|
"json": {
|
|
1743
2052
|
"description": "Format output as json.",
|
|
@@ -1773,7 +2082,7 @@
|
|
|
1773
2082
|
},
|
|
1774
2083
|
"hasDynamicHelp": false,
|
|
1775
2084
|
"hiddenAliases": [],
|
|
1776
|
-
"id": "
|
|
2085
|
+
"id": "billing:subscription",
|
|
1777
2086
|
"pluginAlias": "faces-cli",
|
|
1778
2087
|
"pluginName": "faces-cli",
|
|
1779
2088
|
"pluginType": "core",
|
|
@@ -1783,20 +2092,14 @@
|
|
|
1783
2092
|
"relativePath": [
|
|
1784
2093
|
"dist",
|
|
1785
2094
|
"commands",
|
|
1786
|
-
"
|
|
1787
|
-
"
|
|
2095
|
+
"billing",
|
|
2096
|
+
"subscription.js"
|
|
1788
2097
|
]
|
|
1789
2098
|
},
|
|
1790
|
-
"
|
|
2099
|
+
"billing:topup": {
|
|
1791
2100
|
"aliases": [],
|
|
1792
|
-
"args": {
|
|
1793
|
-
|
|
1794
|
-
"description": "Face ID or username",
|
|
1795
|
-
"name": "face_id",
|
|
1796
|
-
"required": true
|
|
1797
|
-
}
|
|
1798
|
-
},
|
|
1799
|
-
"description": "Update a face's metadata",
|
|
2101
|
+
"args": {},
|
|
2102
|
+
"description": "Top up credit balance using saved payment method",
|
|
1800
2103
|
"flags": {
|
|
1801
2104
|
"json": {
|
|
1802
2105
|
"description": "Format output as json.",
|
|
@@ -1829,38 +2132,25 @@
|
|
|
1829
2132
|
"multiple": false,
|
|
1830
2133
|
"type": "option"
|
|
1831
2134
|
},
|
|
1832
|
-
"
|
|
1833
|
-
"description": "
|
|
1834
|
-
"name": "
|
|
2135
|
+
"amount": {
|
|
2136
|
+
"description": "Top-up amount in USD (min $1)",
|
|
2137
|
+
"name": "amount",
|
|
2138
|
+
"required": true,
|
|
1835
2139
|
"hasDynamicHelp": false,
|
|
1836
2140
|
"multiple": false,
|
|
1837
2141
|
"type": "option"
|
|
1838
2142
|
},
|
|
1839
|
-
"
|
|
1840
|
-
"description": "
|
|
1841
|
-
"name": "
|
|
2143
|
+
"payment-ref": {
|
|
2144
|
+
"description": "Payment reference (admin/test path)",
|
|
2145
|
+
"name": "payment-ref",
|
|
1842
2146
|
"hasDynamicHelp": false,
|
|
1843
2147
|
"multiple": false,
|
|
1844
2148
|
"type": "option"
|
|
1845
|
-
},
|
|
1846
|
-
"attr": {
|
|
1847
|
-
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
1848
|
-
"name": "attr",
|
|
1849
|
-
"hasDynamicHelp": false,
|
|
1850
|
-
"multiple": true,
|
|
1851
|
-
"type": "option"
|
|
1852
|
-
},
|
|
1853
|
-
"tool": {
|
|
1854
|
-
"description": "Tool names to set (replaces list, repeatable)",
|
|
1855
|
-
"name": "tool",
|
|
1856
|
-
"hasDynamicHelp": false,
|
|
1857
|
-
"multiple": true,
|
|
1858
|
-
"type": "option"
|
|
1859
2149
|
}
|
|
1860
2150
|
},
|
|
1861
2151
|
"hasDynamicHelp": false,
|
|
1862
2152
|
"hiddenAliases": [],
|
|
1863
|
-
"id": "
|
|
2153
|
+
"id": "billing:topup",
|
|
1864
2154
|
"pluginAlias": "faces-cli",
|
|
1865
2155
|
"pluginName": "faces-cli",
|
|
1866
2156
|
"pluginType": "core",
|
|
@@ -1870,20 +2160,14 @@
|
|
|
1870
2160
|
"relativePath": [
|
|
1871
2161
|
"dist",
|
|
1872
2162
|
"commands",
|
|
1873
|
-
"
|
|
1874
|
-
"
|
|
2163
|
+
"billing",
|
|
2164
|
+
"topup.js"
|
|
1875
2165
|
]
|
|
1876
2166
|
},
|
|
1877
|
-
"
|
|
2167
|
+
"billing:usage": {
|
|
1878
2168
|
"aliases": [],
|
|
1879
|
-
"args": {
|
|
1880
|
-
|
|
1881
|
-
"description": "Face ID or username",
|
|
1882
|
-
"name": "face_id",
|
|
1883
|
-
"required": true
|
|
1884
|
-
}
|
|
1885
|
-
},
|
|
1886
|
-
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
2169
|
+
"args": {},
|
|
2170
|
+
"description": "Aggregated usage analytics",
|
|
1887
2171
|
"flags": {
|
|
1888
2172
|
"json": {
|
|
1889
2173
|
"description": "Format output as json.",
|
|
@@ -1916,30 +2200,37 @@
|
|
|
1916
2200
|
"multiple": false,
|
|
1917
2201
|
"type": "option"
|
|
1918
2202
|
},
|
|
1919
|
-
"
|
|
1920
|
-
"description": "
|
|
1921
|
-
"name": "
|
|
1922
|
-
"required": true,
|
|
2203
|
+
"group-by": {
|
|
2204
|
+
"description": "Group results",
|
|
2205
|
+
"name": "group-by",
|
|
1923
2206
|
"hasDynamicHelp": false,
|
|
1924
2207
|
"multiple": false,
|
|
2208
|
+
"options": [
|
|
2209
|
+
"api_key",
|
|
2210
|
+
"model",
|
|
2211
|
+
"llm",
|
|
2212
|
+
"date"
|
|
2213
|
+
],
|
|
1925
2214
|
"type": "option"
|
|
1926
2215
|
},
|
|
1927
|
-
"
|
|
1928
|
-
"description": "
|
|
1929
|
-
"name": "
|
|
1930
|
-
"
|
|
2216
|
+
"from": {
|
|
2217
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
2218
|
+
"name": "from",
|
|
2219
|
+
"hasDynamicHelp": false,
|
|
2220
|
+
"multiple": false,
|
|
2221
|
+
"type": "option"
|
|
2222
|
+
},
|
|
2223
|
+
"to": {
|
|
2224
|
+
"description": "End date (YYYY-MM-DD)",
|
|
2225
|
+
"name": "to",
|
|
1931
2226
|
"hasDynamicHelp": false,
|
|
1932
2227
|
"multiple": false,
|
|
1933
|
-
"options": [
|
|
1934
|
-
"document",
|
|
1935
|
-
"thread"
|
|
1936
|
-
],
|
|
1937
2228
|
"type": "option"
|
|
1938
2229
|
}
|
|
1939
2230
|
},
|
|
1940
2231
|
"hasDynamicHelp": false,
|
|
1941
2232
|
"hiddenAliases": [],
|
|
1942
|
-
"id": "
|
|
2233
|
+
"id": "billing:usage",
|
|
1943
2234
|
"pluginAlias": "faces-cli",
|
|
1944
2235
|
"pluginName": "faces-cli",
|
|
1945
2236
|
"pluginType": "core",
|
|
@@ -1949,8 +2240,8 @@
|
|
|
1949
2240
|
"relativePath": [
|
|
1950
2241
|
"dist",
|
|
1951
2242
|
"commands",
|
|
1952
|
-
"
|
|
1953
|
-
"
|
|
2243
|
+
"billing",
|
|
2244
|
+
"usage.js"
|
|
1954
2245
|
]
|
|
1955
2246
|
},
|
|
1956
2247
|
"keys:create": {
|
|
@@ -2239,7 +2530,7 @@
|
|
|
2239
2530
|
"update.js"
|
|
2240
2531
|
]
|
|
2241
2532
|
},
|
|
2242
|
-
"compile:
|
|
2533
|
+
"compile:thread:create": {
|
|
2243
2534
|
"aliases": [],
|
|
2244
2535
|
"args": {
|
|
2245
2536
|
"face_id": {
|
|
@@ -2248,7 +2539,7 @@
|
|
|
2248
2539
|
"required": true
|
|
2249
2540
|
}
|
|
2250
2541
|
},
|
|
2251
|
-
"description": "
|
|
2542
|
+
"description": "Start a new thread for a face",
|
|
2252
2543
|
"flags": {
|
|
2253
2544
|
"json": {
|
|
2254
2545
|
"description": "Format output as json.",
|
|
@@ -2282,30 +2573,16 @@
|
|
|
2282
2573
|
"type": "option"
|
|
2283
2574
|
},
|
|
2284
2575
|
"label": {
|
|
2285
|
-
"description": "
|
|
2576
|
+
"description": "Thread label",
|
|
2286
2577
|
"name": "label",
|
|
2287
2578
|
"hasDynamicHelp": false,
|
|
2288
2579
|
"multiple": false,
|
|
2289
2580
|
"type": "option"
|
|
2290
|
-
},
|
|
2291
|
-
"content": {
|
|
2292
|
-
"description": "Inline text content",
|
|
2293
|
-
"name": "content",
|
|
2294
|
-
"hasDynamicHelp": false,
|
|
2295
|
-
"multiple": false,
|
|
2296
|
-
"type": "option"
|
|
2297
|
-
},
|
|
2298
|
-
"file": {
|
|
2299
|
-
"description": "Read content from file",
|
|
2300
|
-
"name": "file",
|
|
2301
|
-
"hasDynamicHelp": false,
|
|
2302
|
-
"multiple": false,
|
|
2303
|
-
"type": "option"
|
|
2304
2581
|
}
|
|
2305
2582
|
},
|
|
2306
2583
|
"hasDynamicHelp": false,
|
|
2307
2584
|
"hiddenAliases": [],
|
|
2308
|
-
"id": "compile:
|
|
2585
|
+
"id": "compile:thread:create",
|
|
2309
2586
|
"pluginAlias": "faces-cli",
|
|
2310
2587
|
"pluginName": "faces-cli",
|
|
2311
2588
|
"pluginType": "core",
|
|
@@ -2316,20 +2593,20 @@
|
|
|
2316
2593
|
"dist",
|
|
2317
2594
|
"commands",
|
|
2318
2595
|
"compile",
|
|
2319
|
-
"
|
|
2596
|
+
"thread",
|
|
2320
2597
|
"create.js"
|
|
2321
2598
|
]
|
|
2322
2599
|
},
|
|
2323
|
-
"compile:
|
|
2600
|
+
"compile:thread:list": {
|
|
2324
2601
|
"aliases": [],
|
|
2325
2602
|
"args": {
|
|
2326
|
-
"
|
|
2327
|
-
"description": "
|
|
2328
|
-
"name": "
|
|
2603
|
+
"face_id": {
|
|
2604
|
+
"description": "Face ID or username",
|
|
2605
|
+
"name": "face_id",
|
|
2329
2606
|
"required": true
|
|
2330
2607
|
}
|
|
2331
2608
|
},
|
|
2332
|
-
"description": "
|
|
2609
|
+
"description": "List threads for a face",
|
|
2333
2610
|
"flags": {
|
|
2334
2611
|
"json": {
|
|
2335
2612
|
"description": "Format output as json.",
|
|
@@ -2365,7 +2642,7 @@
|
|
|
2365
2642
|
},
|
|
2366
2643
|
"hasDynamicHelp": false,
|
|
2367
2644
|
"hiddenAliases": [],
|
|
2368
|
-
"id": "compile:
|
|
2645
|
+
"id": "compile:thread:list",
|
|
2369
2646
|
"pluginAlias": "faces-cli",
|
|
2370
2647
|
"pluginName": "faces-cli",
|
|
2371
2648
|
"pluginType": "core",
|
|
@@ -2376,20 +2653,20 @@
|
|
|
2376
2653
|
"dist",
|
|
2377
2654
|
"commands",
|
|
2378
2655
|
"compile",
|
|
2379
|
-
"
|
|
2380
|
-
"
|
|
2656
|
+
"thread",
|
|
2657
|
+
"list.js"
|
|
2381
2658
|
]
|
|
2382
2659
|
},
|
|
2383
|
-
"compile:
|
|
2660
|
+
"compile:thread:message": {
|
|
2384
2661
|
"aliases": [],
|
|
2385
2662
|
"args": {
|
|
2386
|
-
"
|
|
2387
|
-
"description": "
|
|
2388
|
-
"name": "
|
|
2663
|
+
"thread_id": {
|
|
2664
|
+
"description": "Thread ID",
|
|
2665
|
+
"name": "thread_id",
|
|
2389
2666
|
"required": true
|
|
2390
2667
|
}
|
|
2391
2668
|
},
|
|
2392
|
-
"description": "
|
|
2669
|
+
"description": "Send a user message to a thread",
|
|
2393
2670
|
"flags": {
|
|
2394
2671
|
"json": {
|
|
2395
2672
|
"description": "Format output as json.",
|
|
@@ -2421,11 +2698,20 @@
|
|
|
2421
2698
|
"hasDynamicHelp": false,
|
|
2422
2699
|
"multiple": false,
|
|
2423
2700
|
"type": "option"
|
|
2701
|
+
},
|
|
2702
|
+
"message": {
|
|
2703
|
+
"char": "m",
|
|
2704
|
+
"description": "User message to append",
|
|
2705
|
+
"name": "message",
|
|
2706
|
+
"required": true,
|
|
2707
|
+
"hasDynamicHelp": false,
|
|
2708
|
+
"multiple": false,
|
|
2709
|
+
"type": "option"
|
|
2424
2710
|
}
|
|
2425
2711
|
},
|
|
2426
2712
|
"hasDynamicHelp": false,
|
|
2427
2713
|
"hiddenAliases": [],
|
|
2428
|
-
"id": "compile:
|
|
2714
|
+
"id": "compile:thread:message",
|
|
2429
2715
|
"pluginAlias": "faces-cli",
|
|
2430
2716
|
"pluginName": "faces-cli",
|
|
2431
2717
|
"pluginType": "core",
|
|
@@ -2436,20 +2722,20 @@
|
|
|
2436
2722
|
"dist",
|
|
2437
2723
|
"commands",
|
|
2438
2724
|
"compile",
|
|
2439
|
-
"
|
|
2440
|
-
"
|
|
2725
|
+
"thread",
|
|
2726
|
+
"message.js"
|
|
2441
2727
|
]
|
|
2442
2728
|
},
|
|
2443
|
-
"compile:
|
|
2729
|
+
"compile:thread:sync": {
|
|
2444
2730
|
"aliases": [],
|
|
2445
2731
|
"args": {
|
|
2446
|
-
"
|
|
2447
|
-
"description": "
|
|
2448
|
-
"name": "
|
|
2732
|
+
"thread_id": {
|
|
2733
|
+
"description": "Thread ID",
|
|
2734
|
+
"name": "thread_id",
|
|
2449
2735
|
"required": true
|
|
2450
2736
|
}
|
|
2451
2737
|
},
|
|
2452
|
-
"description": "
|
|
2738
|
+
"description": "Archive and sync a thread into a face",
|
|
2453
2739
|
"flags": {
|
|
2454
2740
|
"json": {
|
|
2455
2741
|
"description": "Format output as json.",
|
|
@@ -2485,7 +2771,7 @@
|
|
|
2485
2771
|
},
|
|
2486
2772
|
"hasDynamicHelp": false,
|
|
2487
2773
|
"hiddenAliases": [],
|
|
2488
|
-
"id": "compile:
|
|
2774
|
+
"id": "compile:thread:sync",
|
|
2489
2775
|
"pluginAlias": "faces-cli",
|
|
2490
2776
|
"pluginName": "faces-cli",
|
|
2491
2777
|
"pluginType": "core",
|
|
@@ -2496,20 +2782,20 @@
|
|
|
2496
2782
|
"dist",
|
|
2497
2783
|
"commands",
|
|
2498
2784
|
"compile",
|
|
2499
|
-
"
|
|
2500
|
-
"
|
|
2785
|
+
"thread",
|
|
2786
|
+
"sync.js"
|
|
2501
2787
|
]
|
|
2502
2788
|
},
|
|
2503
|
-
"compile:doc:
|
|
2789
|
+
"compile:doc:create": {
|
|
2504
2790
|
"aliases": [],
|
|
2505
2791
|
"args": {
|
|
2506
|
-
"
|
|
2507
|
-
"description": "
|
|
2508
|
-
"name": "
|
|
2792
|
+
"face_id": {
|
|
2793
|
+
"description": "Face ID or username",
|
|
2794
|
+
"name": "face_id",
|
|
2509
2795
|
"required": true
|
|
2510
2796
|
}
|
|
2511
2797
|
},
|
|
2512
|
-
"description": "
|
|
2798
|
+
"description": "Submit a document to a face",
|
|
2513
2799
|
"flags": {
|
|
2514
2800
|
"json": {
|
|
2515
2801
|
"description": "Format output as json.",
|
|
@@ -2541,11 +2827,32 @@
|
|
|
2541
2827
|
"hasDynamicHelp": false,
|
|
2542
2828
|
"multiple": false,
|
|
2543
2829
|
"type": "option"
|
|
2830
|
+
},
|
|
2831
|
+
"label": {
|
|
2832
|
+
"description": "Document label/title",
|
|
2833
|
+
"name": "label",
|
|
2834
|
+
"hasDynamicHelp": false,
|
|
2835
|
+
"multiple": false,
|
|
2836
|
+
"type": "option"
|
|
2837
|
+
},
|
|
2838
|
+
"content": {
|
|
2839
|
+
"description": "Inline text content",
|
|
2840
|
+
"name": "content",
|
|
2841
|
+
"hasDynamicHelp": false,
|
|
2842
|
+
"multiple": false,
|
|
2843
|
+
"type": "option"
|
|
2844
|
+
},
|
|
2845
|
+
"file": {
|
|
2846
|
+
"description": "Read content from file",
|
|
2847
|
+
"name": "file",
|
|
2848
|
+
"hasDynamicHelp": false,
|
|
2849
|
+
"multiple": false,
|
|
2850
|
+
"type": "option"
|
|
2544
2851
|
}
|
|
2545
2852
|
},
|
|
2546
2853
|
"hasDynamicHelp": false,
|
|
2547
2854
|
"hiddenAliases": [],
|
|
2548
|
-
"id": "compile:doc:
|
|
2855
|
+
"id": "compile:doc:create",
|
|
2549
2856
|
"pluginAlias": "faces-cli",
|
|
2550
2857
|
"pluginName": "faces-cli",
|
|
2551
2858
|
"pluginType": "core",
|
|
@@ -2557,10 +2864,10 @@
|
|
|
2557
2864
|
"commands",
|
|
2558
2865
|
"compile",
|
|
2559
2866
|
"doc",
|
|
2560
|
-
"
|
|
2867
|
+
"create.js"
|
|
2561
2868
|
]
|
|
2562
2869
|
},
|
|
2563
|
-
"compile:doc:
|
|
2870
|
+
"compile:doc:delete": {
|
|
2564
2871
|
"aliases": [],
|
|
2565
2872
|
"args": {
|
|
2566
2873
|
"doc_id": {
|
|
@@ -2569,7 +2876,7 @@
|
|
|
2569
2876
|
"required": true
|
|
2570
2877
|
}
|
|
2571
2878
|
},
|
|
2572
|
-
"description": "
|
|
2879
|
+
"description": "Delete a document",
|
|
2573
2880
|
"flags": {
|
|
2574
2881
|
"json": {
|
|
2575
2882
|
"description": "Format output as json.",
|
|
@@ -2601,17 +2908,11 @@
|
|
|
2601
2908
|
"hasDynamicHelp": false,
|
|
2602
2909
|
"multiple": false,
|
|
2603
2910
|
"type": "option"
|
|
2604
|
-
},
|
|
2605
|
-
"yes": {
|
|
2606
|
-
"description": "Skip confirmation (quota will be charged)",
|
|
2607
|
-
"name": "yes",
|
|
2608
|
-
"allowNo": false,
|
|
2609
|
-
"type": "boolean"
|
|
2610
2911
|
}
|
|
2611
2912
|
},
|
|
2612
2913
|
"hasDynamicHelp": false,
|
|
2613
2914
|
"hiddenAliases": [],
|
|
2614
|
-
"id": "compile:doc:
|
|
2915
|
+
"id": "compile:doc:delete",
|
|
2615
2916
|
"pluginAlias": "faces-cli",
|
|
2616
2917
|
"pluginName": "faces-cli",
|
|
2617
2918
|
"pluginType": "core",
|
|
@@ -2623,19 +2924,19 @@
|
|
|
2623
2924
|
"commands",
|
|
2624
2925
|
"compile",
|
|
2625
2926
|
"doc",
|
|
2626
|
-
"
|
|
2927
|
+
"delete.js"
|
|
2627
2928
|
]
|
|
2628
2929
|
},
|
|
2629
|
-
"compile:
|
|
2930
|
+
"compile:doc:get": {
|
|
2630
2931
|
"aliases": [],
|
|
2631
2932
|
"args": {
|
|
2632
|
-
"
|
|
2633
|
-
"description": "
|
|
2634
|
-
"name": "
|
|
2933
|
+
"doc_id": {
|
|
2934
|
+
"description": "Document ID",
|
|
2935
|
+
"name": "doc_id",
|
|
2635
2936
|
"required": true
|
|
2636
2937
|
}
|
|
2637
2938
|
},
|
|
2638
|
-
"description": "
|
|
2939
|
+
"description": "Get a document by ID",
|
|
2639
2940
|
"flags": {
|
|
2640
2941
|
"json": {
|
|
2641
2942
|
"description": "Format output as json.",
|
|
@@ -2667,18 +2968,11 @@
|
|
|
2667
2968
|
"hasDynamicHelp": false,
|
|
2668
2969
|
"multiple": false,
|
|
2669
2970
|
"type": "option"
|
|
2670
|
-
},
|
|
2671
|
-
"label": {
|
|
2672
|
-
"description": "Thread label",
|
|
2673
|
-
"name": "label",
|
|
2674
|
-
"hasDynamicHelp": false,
|
|
2675
|
-
"multiple": false,
|
|
2676
|
-
"type": "option"
|
|
2677
2971
|
}
|
|
2678
2972
|
},
|
|
2679
2973
|
"hasDynamicHelp": false,
|
|
2680
2974
|
"hiddenAliases": [],
|
|
2681
|
-
"id": "compile:
|
|
2975
|
+
"id": "compile:doc:get",
|
|
2682
2976
|
"pluginAlias": "faces-cli",
|
|
2683
2977
|
"pluginName": "faces-cli",
|
|
2684
2978
|
"pluginType": "core",
|
|
@@ -2689,11 +2983,11 @@
|
|
|
2689
2983
|
"dist",
|
|
2690
2984
|
"commands",
|
|
2691
2985
|
"compile",
|
|
2692
|
-
"
|
|
2693
|
-
"
|
|
2986
|
+
"doc",
|
|
2987
|
+
"get.js"
|
|
2694
2988
|
]
|
|
2695
2989
|
},
|
|
2696
|
-
"compile:
|
|
2990
|
+
"compile:doc:list": {
|
|
2697
2991
|
"aliases": [],
|
|
2698
2992
|
"args": {
|
|
2699
2993
|
"face_id": {
|
|
@@ -2702,7 +2996,7 @@
|
|
|
2702
2996
|
"required": true
|
|
2703
2997
|
}
|
|
2704
2998
|
},
|
|
2705
|
-
"description": "List
|
|
2999
|
+
"description": "List documents for a face",
|
|
2706
3000
|
"flags": {
|
|
2707
3001
|
"json": {
|
|
2708
3002
|
"description": "Format output as json.",
|
|
@@ -2738,7 +3032,7 @@
|
|
|
2738
3032
|
},
|
|
2739
3033
|
"hasDynamicHelp": false,
|
|
2740
3034
|
"hiddenAliases": [],
|
|
2741
|
-
"id": "compile:
|
|
3035
|
+
"id": "compile:doc:list",
|
|
2742
3036
|
"pluginAlias": "faces-cli",
|
|
2743
3037
|
"pluginName": "faces-cli",
|
|
2744
3038
|
"pluginType": "core",
|
|
@@ -2749,20 +3043,20 @@
|
|
|
2749
3043
|
"dist",
|
|
2750
3044
|
"commands",
|
|
2751
3045
|
"compile",
|
|
2752
|
-
"
|
|
3046
|
+
"doc",
|
|
2753
3047
|
"list.js"
|
|
2754
3048
|
]
|
|
2755
3049
|
},
|
|
2756
|
-
"compile:
|
|
3050
|
+
"compile:doc:prepare": {
|
|
2757
3051
|
"aliases": [],
|
|
2758
3052
|
"args": {
|
|
2759
|
-
"
|
|
2760
|
-
"description": "
|
|
2761
|
-
"name": "
|
|
3053
|
+
"doc_id": {
|
|
3054
|
+
"description": "Document ID",
|
|
3055
|
+
"name": "doc_id",
|
|
2762
3056
|
"required": true
|
|
2763
3057
|
}
|
|
2764
3058
|
},
|
|
2765
|
-
"description": "
|
|
3059
|
+
"description": "Run LLM extraction pipeline on a document",
|
|
2766
3060
|
"flags": {
|
|
2767
3061
|
"json": {
|
|
2768
3062
|
"description": "Format output as json.",
|
|
@@ -2794,20 +3088,11 @@
|
|
|
2794
3088
|
"hasDynamicHelp": false,
|
|
2795
3089
|
"multiple": false,
|
|
2796
3090
|
"type": "option"
|
|
2797
|
-
},
|
|
2798
|
-
"message": {
|
|
2799
|
-
"char": "m",
|
|
2800
|
-
"description": "User message to append",
|
|
2801
|
-
"name": "message",
|
|
2802
|
-
"required": true,
|
|
2803
|
-
"hasDynamicHelp": false,
|
|
2804
|
-
"multiple": false,
|
|
2805
|
-
"type": "option"
|
|
2806
3091
|
}
|
|
2807
3092
|
},
|
|
2808
3093
|
"hasDynamicHelp": false,
|
|
2809
3094
|
"hiddenAliases": [],
|
|
2810
|
-
"id": "compile:
|
|
3095
|
+
"id": "compile:doc:prepare",
|
|
2811
3096
|
"pluginAlias": "faces-cli",
|
|
2812
3097
|
"pluginName": "faces-cli",
|
|
2813
3098
|
"pluginType": "core",
|
|
@@ -2818,20 +3103,20 @@
|
|
|
2818
3103
|
"dist",
|
|
2819
3104
|
"commands",
|
|
2820
3105
|
"compile",
|
|
2821
|
-
"
|
|
2822
|
-
"
|
|
3106
|
+
"doc",
|
|
3107
|
+
"prepare.js"
|
|
2823
3108
|
]
|
|
2824
3109
|
},
|
|
2825
|
-
"compile:
|
|
3110
|
+
"compile:doc:sync": {
|
|
2826
3111
|
"aliases": [],
|
|
2827
3112
|
"args": {
|
|
2828
|
-
"
|
|
2829
|
-
"description": "
|
|
2830
|
-
"name": "
|
|
3113
|
+
"doc_id": {
|
|
3114
|
+
"description": "Document ID",
|
|
3115
|
+
"name": "doc_id",
|
|
2831
3116
|
"required": true
|
|
2832
3117
|
}
|
|
2833
3118
|
},
|
|
2834
|
-
"description": "
|
|
3119
|
+
"description": "Sync a document into a face (charges compile quota)",
|
|
2835
3120
|
"flags": {
|
|
2836
3121
|
"json": {
|
|
2837
3122
|
"description": "Format output as json.",
|
|
@@ -2863,11 +3148,17 @@
|
|
|
2863
3148
|
"hasDynamicHelp": false,
|
|
2864
3149
|
"multiple": false,
|
|
2865
3150
|
"type": "option"
|
|
3151
|
+
},
|
|
3152
|
+
"yes": {
|
|
3153
|
+
"description": "Skip confirmation (quota will be charged)",
|
|
3154
|
+
"name": "yes",
|
|
3155
|
+
"allowNo": false,
|
|
3156
|
+
"type": "boolean"
|
|
2866
3157
|
}
|
|
2867
3158
|
},
|
|
2868
3159
|
"hasDynamicHelp": false,
|
|
2869
3160
|
"hiddenAliases": [],
|
|
2870
|
-
"id": "compile:
|
|
3161
|
+
"id": "compile:doc:sync",
|
|
2871
3162
|
"pluginAlias": "faces-cli",
|
|
2872
3163
|
"pluginName": "faces-cli",
|
|
2873
3164
|
"pluginType": "core",
|
|
@@ -2878,10 +3169,10 @@
|
|
|
2878
3169
|
"dist",
|
|
2879
3170
|
"commands",
|
|
2880
3171
|
"compile",
|
|
2881
|
-
"
|
|
3172
|
+
"doc",
|
|
2882
3173
|
"sync.js"
|
|
2883
3174
|
]
|
|
2884
3175
|
}
|
|
2885
3176
|
},
|
|
2886
|
-
"version": "1.
|
|
3177
|
+
"version": "1.3.1"
|
|
2887
3178
|
}
|