faces-cli 1.2.1 → 1.3.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/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 +17 -6
- package/dist/commands/compile/import.d.ts +17 -0
- package/dist/commands/compile/import.js +81 -0
- package/oclif.manifest.json +754 -463
- 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
|
+
"keys:create": {
|
|
1472
1763
|
"aliases": [],
|
|
1473
1764
|
"args": {},
|
|
1474
|
-
"description": "
|
|
1765
|
+
"description": "Create a new API key (JWT required)",
|
|
1475
1766
|
"flags": {
|
|
1476
1767
|
"json": {
|
|
1477
1768
|
"description": "Format output as json.",
|
|
@@ -1504,10 +1795,38 @@
|
|
|
1504
1795
|
"multiple": false,
|
|
1505
1796
|
"type": "option"
|
|
1506
1797
|
},
|
|
1798
|
+
"name": {
|
|
1799
|
+
"description": "Key name/label",
|
|
1800
|
+
"name": "name",
|
|
1801
|
+
"required": true,
|
|
1802
|
+
"hasDynamicHelp": false,
|
|
1803
|
+
"multiple": false,
|
|
1804
|
+
"type": "option"
|
|
1805
|
+
},
|
|
1806
|
+
"expires-days": {
|
|
1807
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
1808
|
+
"name": "expires-days",
|
|
1809
|
+
"hasDynamicHelp": false,
|
|
1810
|
+
"multiple": false,
|
|
1811
|
+
"type": "option"
|
|
1812
|
+
},
|
|
1813
|
+
"budget": {
|
|
1814
|
+
"description": "Spend budget in USD",
|
|
1815
|
+
"name": "budget",
|
|
1816
|
+
"hasDynamicHelp": false,
|
|
1817
|
+
"multiple": false,
|
|
1818
|
+
"type": "option"
|
|
1819
|
+
},
|
|
1507
1820
|
"face": {
|
|
1508
|
-
"description": "
|
|
1821
|
+
"description": "Allowed face username (repeatable)",
|
|
1509
1822
|
"name": "face",
|
|
1510
|
-
"
|
|
1823
|
+
"hasDynamicHelp": false,
|
|
1824
|
+
"multiple": true,
|
|
1825
|
+
"type": "option"
|
|
1826
|
+
},
|
|
1827
|
+
"model": {
|
|
1828
|
+
"description": "Allowed model name (repeatable)",
|
|
1829
|
+
"name": "model",
|
|
1511
1830
|
"hasDynamicHelp": false,
|
|
1512
1831
|
"multiple": true,
|
|
1513
1832
|
"type": "option"
|
|
@@ -1515,7 +1834,7 @@
|
|
|
1515
1834
|
},
|
|
1516
1835
|
"hasDynamicHelp": false,
|
|
1517
1836
|
"hiddenAliases": [],
|
|
1518
|
-
"id": "
|
|
1837
|
+
"id": "keys:create",
|
|
1519
1838
|
"pluginAlias": "faces-cli",
|
|
1520
1839
|
"pluginName": "faces-cli",
|
|
1521
1840
|
"pluginType": "core",
|
|
@@ -1525,20 +1844,14 @@
|
|
|
1525
1844
|
"relativePath": [
|
|
1526
1845
|
"dist",
|
|
1527
1846
|
"commands",
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1847
|
+
"keys",
|
|
1848
|
+
"create.js"
|
|
1530
1849
|
]
|
|
1531
1850
|
},
|
|
1532
|
-
"
|
|
1851
|
+
"keys:list": {
|
|
1533
1852
|
"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",
|
|
1853
|
+
"args": {},
|
|
1854
|
+
"description": "List all API keys (JWT required)",
|
|
1542
1855
|
"flags": {
|
|
1543
1856
|
"json": {
|
|
1544
1857
|
"description": "Format output as json.",
|
|
@@ -1574,7 +1887,7 @@
|
|
|
1574
1887
|
},
|
|
1575
1888
|
"hasDynamicHelp": false,
|
|
1576
1889
|
"hiddenAliases": [],
|
|
1577
|
-
"id": "
|
|
1890
|
+
"id": "keys:list",
|
|
1578
1891
|
"pluginAlias": "faces-cli",
|
|
1579
1892
|
"pluginName": "faces-cli",
|
|
1580
1893
|
"pluginType": "core",
|
|
@@ -1584,14 +1897,20 @@
|
|
|
1584
1897
|
"relativePath": [
|
|
1585
1898
|
"dist",
|
|
1586
1899
|
"commands",
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1900
|
+
"keys",
|
|
1901
|
+
"list.js"
|
|
1589
1902
|
]
|
|
1590
1903
|
},
|
|
1591
|
-
"
|
|
1904
|
+
"keys:revoke": {
|
|
1592
1905
|
"aliases": [],
|
|
1593
|
-
"args": {
|
|
1594
|
-
|
|
1906
|
+
"args": {
|
|
1907
|
+
"key_id": {
|
|
1908
|
+
"description": "Key ID",
|
|
1909
|
+
"name": "key_id",
|
|
1910
|
+
"required": true
|
|
1911
|
+
}
|
|
1912
|
+
},
|
|
1913
|
+
"description": "Revoke an API key (JWT required)",
|
|
1595
1914
|
"flags": {
|
|
1596
1915
|
"json": {
|
|
1597
1916
|
"description": "Format output as json.",
|
|
@@ -1623,11 +1942,17 @@
|
|
|
1623
1942
|
"hasDynamicHelp": false,
|
|
1624
1943
|
"multiple": false,
|
|
1625
1944
|
"type": "option"
|
|
1945
|
+
},
|
|
1946
|
+
"yes": {
|
|
1947
|
+
"description": "Skip confirmation",
|
|
1948
|
+
"name": "yes",
|
|
1949
|
+
"allowNo": false,
|
|
1950
|
+
"type": "boolean"
|
|
1626
1951
|
}
|
|
1627
1952
|
},
|
|
1628
1953
|
"hasDynamicHelp": false,
|
|
1629
1954
|
"hiddenAliases": [],
|
|
1630
|
-
"id": "
|
|
1955
|
+
"id": "keys:revoke",
|
|
1631
1956
|
"pluginAlias": "faces-cli",
|
|
1632
1957
|
"pluginName": "faces-cli",
|
|
1633
1958
|
"pluginType": "core",
|
|
@@ -1637,20 +1962,20 @@
|
|
|
1637
1962
|
"relativePath": [
|
|
1638
1963
|
"dist",
|
|
1639
1964
|
"commands",
|
|
1640
|
-
"
|
|
1641
|
-
"
|
|
1965
|
+
"keys",
|
|
1966
|
+
"revoke.js"
|
|
1642
1967
|
]
|
|
1643
1968
|
},
|
|
1644
|
-
"
|
|
1969
|
+
"keys:update": {
|
|
1645
1970
|
"aliases": [],
|
|
1646
1971
|
"args": {
|
|
1647
|
-
"
|
|
1648
|
-
"description": "
|
|
1649
|
-
"name": "
|
|
1972
|
+
"key_id": {
|
|
1973
|
+
"description": "Key ID",
|
|
1974
|
+
"name": "key_id",
|
|
1650
1975
|
"required": true
|
|
1651
1976
|
}
|
|
1652
1977
|
},
|
|
1653
|
-
"description": "
|
|
1978
|
+
"description": "Update API key metadata (JWT required)",
|
|
1654
1979
|
"flags": {
|
|
1655
1980
|
"json": {
|
|
1656
1981
|
"description": "Format output as json.",
|
|
@@ -1683,44 +2008,30 @@
|
|
|
1683
2008
|
"multiple": false,
|
|
1684
2009
|
"type": "option"
|
|
1685
2010
|
},
|
|
1686
|
-
"
|
|
1687
|
-
"description": "
|
|
1688
|
-
"name": "
|
|
1689
|
-
"default": 5,
|
|
2011
|
+
"name": {
|
|
2012
|
+
"description": "New key name",
|
|
2013
|
+
"name": "name",
|
|
1690
2014
|
"hasDynamicHelp": false,
|
|
1691
2015
|
"multiple": false,
|
|
1692
2016
|
"type": "option"
|
|
1693
2017
|
},
|
|
1694
|
-
"
|
|
1695
|
-
"description": "
|
|
1696
|
-
"name": "
|
|
1697
|
-
"default": "face",
|
|
2018
|
+
"budget": {
|
|
2019
|
+
"description": "New spend budget in USD",
|
|
2020
|
+
"name": "budget",
|
|
1698
2021
|
"hasDynamicHelp": false,
|
|
1699
2022
|
"multiple": false,
|
|
1700
|
-
"options": [
|
|
1701
|
-
"face",
|
|
1702
|
-
"beta",
|
|
1703
|
-
"delta",
|
|
1704
|
-
"epsilon"
|
|
1705
|
-
],
|
|
1706
2023
|
"type": "option"
|
|
1707
2024
|
},
|
|
1708
|
-
"
|
|
1709
|
-
"description": "
|
|
1710
|
-
"name": "
|
|
1711
|
-
"
|
|
1712
|
-
"
|
|
1713
|
-
"multiple": false,
|
|
1714
|
-
"options": [
|
|
1715
|
-
"nearest",
|
|
1716
|
-
"furthest"
|
|
1717
|
-
],
|
|
1718
|
-
"type": "option"
|
|
2025
|
+
"reset-spent": {
|
|
2026
|
+
"description": "Reset spent amount to zero",
|
|
2027
|
+
"name": "reset-spent",
|
|
2028
|
+
"allowNo": false,
|
|
2029
|
+
"type": "boolean"
|
|
1719
2030
|
}
|
|
1720
2031
|
},
|
|
1721
2032
|
"hasDynamicHelp": false,
|
|
1722
2033
|
"hiddenAliases": [],
|
|
1723
|
-
"id": "
|
|
2034
|
+
"id": "keys:update",
|
|
1724
2035
|
"pluginAlias": "faces-cli",
|
|
1725
2036
|
"pluginName": "faces-cli",
|
|
1726
2037
|
"pluginType": "core",
|
|
@@ -1730,14 +2041,14 @@
|
|
|
1730
2041
|
"relativePath": [
|
|
1731
2042
|
"dist",
|
|
1732
2043
|
"commands",
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
2044
|
+
"keys",
|
|
2045
|
+
"update.js"
|
|
1735
2046
|
]
|
|
1736
2047
|
},
|
|
1737
|
-
"
|
|
2048
|
+
"billing:balance": {
|
|
1738
2049
|
"aliases": [],
|
|
1739
2050
|
"args": {},
|
|
1740
|
-
"description": "
|
|
2051
|
+
"description": "Show credit balance and payment method status",
|
|
1741
2052
|
"flags": {
|
|
1742
2053
|
"json": {
|
|
1743
2054
|
"description": "Format output as json.",
|
|
@@ -1773,7 +2084,7 @@
|
|
|
1773
2084
|
},
|
|
1774
2085
|
"hasDynamicHelp": false,
|
|
1775
2086
|
"hiddenAliases": [],
|
|
1776
|
-
"id": "
|
|
2087
|
+
"id": "billing:balance",
|
|
1777
2088
|
"pluginAlias": "faces-cli",
|
|
1778
2089
|
"pluginName": "faces-cli",
|
|
1779
2090
|
"pluginType": "core",
|
|
@@ -1783,20 +2094,14 @@
|
|
|
1783
2094
|
"relativePath": [
|
|
1784
2095
|
"dist",
|
|
1785
2096
|
"commands",
|
|
1786
|
-
"
|
|
1787
|
-
"
|
|
2097
|
+
"billing",
|
|
2098
|
+
"balance.js"
|
|
1788
2099
|
]
|
|
1789
2100
|
},
|
|
1790
|
-
"
|
|
2101
|
+
"billing:card-setup": {
|
|
1791
2102
|
"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",
|
|
2103
|
+
"args": {},
|
|
2104
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
1800
2105
|
"flags": {
|
|
1801
2106
|
"json": {
|
|
1802
2107
|
"description": "Format output as json.",
|
|
@@ -1828,39 +2133,11 @@
|
|
|
1828
2133
|
"hasDynamicHelp": false,
|
|
1829
2134
|
"multiple": false,
|
|
1830
2135
|
"type": "option"
|
|
1831
|
-
},
|
|
1832
|
-
"name": {
|
|
1833
|
-
"description": "New display name",
|
|
1834
|
-
"name": "name",
|
|
1835
|
-
"hasDynamicHelp": false,
|
|
1836
|
-
"multiple": false,
|
|
1837
|
-
"type": "option"
|
|
1838
|
-
},
|
|
1839
|
-
"formula": {
|
|
1840
|
-
"description": "New boolean formula (synthetic faces only)",
|
|
1841
|
-
"name": "formula",
|
|
1842
|
-
"hasDynamicHelp": false,
|
|
1843
|
-
"multiple": false,
|
|
1844
|
-
"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
2136
|
}
|
|
1860
2137
|
},
|
|
1861
2138
|
"hasDynamicHelp": false,
|
|
1862
2139
|
"hiddenAliases": [],
|
|
1863
|
-
"id": "
|
|
2140
|
+
"id": "billing:card-setup",
|
|
1864
2141
|
"pluginAlias": "faces-cli",
|
|
1865
2142
|
"pluginName": "faces-cli",
|
|
1866
2143
|
"pluginType": "core",
|
|
@@ -1870,20 +2147,14 @@
|
|
|
1870
2147
|
"relativePath": [
|
|
1871
2148
|
"dist",
|
|
1872
2149
|
"commands",
|
|
1873
|
-
"
|
|
1874
|
-
"
|
|
2150
|
+
"billing",
|
|
2151
|
+
"card-setup.js"
|
|
1875
2152
|
]
|
|
1876
2153
|
},
|
|
1877
|
-
"
|
|
2154
|
+
"billing:checkout": {
|
|
1878
2155
|
"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",
|
|
2156
|
+
"args": {},
|
|
2157
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
1887
2158
|
"flags": {
|
|
1888
2159
|
"json": {
|
|
1889
2160
|
"description": "Format output as json.",
|
|
@@ -1916,30 +2187,22 @@
|
|
|
1916
2187
|
"multiple": false,
|
|
1917
2188
|
"type": "option"
|
|
1918
2189
|
},
|
|
1919
|
-
"
|
|
1920
|
-
"description": "
|
|
1921
|
-
"name": "
|
|
2190
|
+
"plan": {
|
|
2191
|
+
"description": "Plan to upgrade to",
|
|
2192
|
+
"name": "plan",
|
|
1922
2193
|
"required": true,
|
|
1923
2194
|
"hasDynamicHelp": false,
|
|
1924
2195
|
"multiple": false,
|
|
1925
|
-
"type": "option"
|
|
1926
|
-
},
|
|
1927
|
-
"kind": {
|
|
1928
|
-
"description": "Upload kind: document or thread",
|
|
1929
|
-
"name": "kind",
|
|
1930
|
-
"default": "document",
|
|
1931
|
-
"hasDynamicHelp": false,
|
|
1932
|
-
"multiple": false,
|
|
1933
2196
|
"options": [
|
|
1934
|
-
"
|
|
1935
|
-
"
|
|
2197
|
+
"standard",
|
|
2198
|
+
"pro"
|
|
1936
2199
|
],
|
|
1937
2200
|
"type": "option"
|
|
1938
2201
|
}
|
|
1939
2202
|
},
|
|
1940
2203
|
"hasDynamicHelp": false,
|
|
1941
2204
|
"hiddenAliases": [],
|
|
1942
|
-
"id": "
|
|
2205
|
+
"id": "billing:checkout",
|
|
1943
2206
|
"pluginAlias": "faces-cli",
|
|
1944
2207
|
"pluginName": "faces-cli",
|
|
1945
2208
|
"pluginType": "core",
|
|
@@ -1949,14 +2212,14 @@
|
|
|
1949
2212
|
"relativePath": [
|
|
1950
2213
|
"dist",
|
|
1951
2214
|
"commands",
|
|
1952
|
-
"
|
|
1953
|
-
"
|
|
2215
|
+
"billing",
|
|
2216
|
+
"checkout.js"
|
|
1954
2217
|
]
|
|
1955
2218
|
},
|
|
1956
|
-
"
|
|
2219
|
+
"billing:llm-costs": {
|
|
1957
2220
|
"aliases": [],
|
|
1958
2221
|
"args": {},
|
|
1959
|
-
"description": "
|
|
2222
|
+
"description": "List available LLMs and their per-token costs",
|
|
1960
2223
|
"flags": {
|
|
1961
2224
|
"json": {
|
|
1962
2225
|
"description": "Format output as json.",
|
|
@@ -1989,46 +2252,70 @@
|
|
|
1989
2252
|
"multiple": false,
|
|
1990
2253
|
"type": "option"
|
|
1991
2254
|
},
|
|
1992
|
-
"
|
|
1993
|
-
"description": "
|
|
1994
|
-
"name": "
|
|
1995
|
-
"required": true,
|
|
2255
|
+
"provider": {
|
|
2256
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
2257
|
+
"name": "provider",
|
|
1996
2258
|
"hasDynamicHelp": false,
|
|
1997
2259
|
"multiple": false,
|
|
1998
2260
|
"type": "option"
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
"hasDynamicHelp": false,
|
|
2264
|
+
"hiddenAliases": [],
|
|
2265
|
+
"id": "billing:llm-costs",
|
|
2266
|
+
"pluginAlias": "faces-cli",
|
|
2267
|
+
"pluginName": "faces-cli",
|
|
2268
|
+
"pluginType": "core",
|
|
2269
|
+
"strict": true,
|
|
2270
|
+
"enableJsonFlag": true,
|
|
2271
|
+
"isESM": true,
|
|
2272
|
+
"relativePath": [
|
|
2273
|
+
"dist",
|
|
2274
|
+
"commands",
|
|
2275
|
+
"billing",
|
|
2276
|
+
"llm-costs.js"
|
|
2277
|
+
]
|
|
2278
|
+
},
|
|
2279
|
+
"billing:quota": {
|
|
2280
|
+
"aliases": [],
|
|
2281
|
+
"args": {},
|
|
2282
|
+
"description": "Show compile token quota and per-face stats",
|
|
2283
|
+
"flags": {
|
|
2284
|
+
"json": {
|
|
2285
|
+
"description": "Format output as json.",
|
|
2286
|
+
"helpGroup": "GLOBAL",
|
|
2287
|
+
"name": "json",
|
|
2288
|
+
"allowNo": false,
|
|
2289
|
+
"type": "boolean"
|
|
1999
2290
|
},
|
|
2000
|
-
"
|
|
2001
|
-
"description": "
|
|
2002
|
-
"
|
|
2291
|
+
"base-url": {
|
|
2292
|
+
"description": "API base URL",
|
|
2293
|
+
"env": "FACES_BASE_URL",
|
|
2294
|
+
"name": "base-url",
|
|
2003
2295
|
"hasDynamicHelp": false,
|
|
2004
2296
|
"multiple": false,
|
|
2005
2297
|
"type": "option"
|
|
2006
2298
|
},
|
|
2007
|
-
"
|
|
2008
|
-
"description": "
|
|
2009
|
-
"
|
|
2299
|
+
"token": {
|
|
2300
|
+
"description": "JWT bearer token",
|
|
2301
|
+
"env": "FACES_TOKEN",
|
|
2302
|
+
"name": "token",
|
|
2010
2303
|
"hasDynamicHelp": false,
|
|
2011
2304
|
"multiple": false,
|
|
2012
2305
|
"type": "option"
|
|
2013
2306
|
},
|
|
2014
|
-
"
|
|
2015
|
-
"description": "
|
|
2016
|
-
"
|
|
2017
|
-
"
|
|
2018
|
-
"multiple": true,
|
|
2019
|
-
"type": "option"
|
|
2020
|
-
},
|
|
2021
|
-
"model": {
|
|
2022
|
-
"description": "Allowed model name (repeatable)",
|
|
2023
|
-
"name": "model",
|
|
2307
|
+
"api-key": {
|
|
2308
|
+
"description": "API key",
|
|
2309
|
+
"env": "FACES_API_KEY",
|
|
2310
|
+
"name": "api-key",
|
|
2024
2311
|
"hasDynamicHelp": false,
|
|
2025
|
-
"multiple":
|
|
2312
|
+
"multiple": false,
|
|
2026
2313
|
"type": "option"
|
|
2027
2314
|
}
|
|
2028
2315
|
},
|
|
2029
2316
|
"hasDynamicHelp": false,
|
|
2030
2317
|
"hiddenAliases": [],
|
|
2031
|
-
"id": "
|
|
2318
|
+
"id": "billing:quota",
|
|
2032
2319
|
"pluginAlias": "faces-cli",
|
|
2033
2320
|
"pluginName": "faces-cli",
|
|
2034
2321
|
"pluginType": "core",
|
|
@@ -2038,14 +2325,14 @@
|
|
|
2038
2325
|
"relativePath": [
|
|
2039
2326
|
"dist",
|
|
2040
2327
|
"commands",
|
|
2041
|
-
"
|
|
2042
|
-
"
|
|
2328
|
+
"billing",
|
|
2329
|
+
"quota.js"
|
|
2043
2330
|
]
|
|
2044
2331
|
},
|
|
2045
|
-
"
|
|
2332
|
+
"billing:subscription": {
|
|
2046
2333
|
"aliases": [],
|
|
2047
2334
|
"args": {},
|
|
2048
|
-
"description": "
|
|
2335
|
+
"description": "Show current plan, face count, and renewal date",
|
|
2049
2336
|
"flags": {
|
|
2050
2337
|
"json": {
|
|
2051
2338
|
"description": "Format output as json.",
|
|
@@ -2081,7 +2368,7 @@
|
|
|
2081
2368
|
},
|
|
2082
2369
|
"hasDynamicHelp": false,
|
|
2083
2370
|
"hiddenAliases": [],
|
|
2084
|
-
"id": "
|
|
2371
|
+
"id": "billing:subscription",
|
|
2085
2372
|
"pluginAlias": "faces-cli",
|
|
2086
2373
|
"pluginName": "faces-cli",
|
|
2087
2374
|
"pluginType": "core",
|
|
@@ -2091,20 +2378,14 @@
|
|
|
2091
2378
|
"relativePath": [
|
|
2092
2379
|
"dist",
|
|
2093
2380
|
"commands",
|
|
2094
|
-
"
|
|
2095
|
-
"
|
|
2381
|
+
"billing",
|
|
2382
|
+
"subscription.js"
|
|
2096
2383
|
]
|
|
2097
2384
|
},
|
|
2098
|
-
"
|
|
2385
|
+
"billing:topup": {
|
|
2099
2386
|
"aliases": [],
|
|
2100
|
-
"args": {
|
|
2101
|
-
|
|
2102
|
-
"description": "Key ID",
|
|
2103
|
-
"name": "key_id",
|
|
2104
|
-
"required": true
|
|
2105
|
-
}
|
|
2106
|
-
},
|
|
2107
|
-
"description": "Revoke an API key (JWT required)",
|
|
2387
|
+
"args": {},
|
|
2388
|
+
"description": "Top up credit balance using saved payment method",
|
|
2108
2389
|
"flags": {
|
|
2109
2390
|
"json": {
|
|
2110
2391
|
"description": "Format output as json.",
|
|
@@ -2137,16 +2418,25 @@
|
|
|
2137
2418
|
"multiple": false,
|
|
2138
2419
|
"type": "option"
|
|
2139
2420
|
},
|
|
2140
|
-
"
|
|
2141
|
-
"description": "
|
|
2142
|
-
"name": "
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
2421
|
+
"amount": {
|
|
2422
|
+
"description": "Top-up amount in USD (min $1)",
|
|
2423
|
+
"name": "amount",
|
|
2424
|
+
"required": true,
|
|
2425
|
+
"hasDynamicHelp": false,
|
|
2426
|
+
"multiple": false,
|
|
2427
|
+
"type": "option"
|
|
2428
|
+
},
|
|
2429
|
+
"payment-ref": {
|
|
2430
|
+
"description": "Payment reference (admin/test path)",
|
|
2431
|
+
"name": "payment-ref",
|
|
2432
|
+
"hasDynamicHelp": false,
|
|
2433
|
+
"multiple": false,
|
|
2434
|
+
"type": "option"
|
|
2145
2435
|
}
|
|
2146
2436
|
},
|
|
2147
2437
|
"hasDynamicHelp": false,
|
|
2148
2438
|
"hiddenAliases": [],
|
|
2149
|
-
"id": "
|
|
2439
|
+
"id": "billing:topup",
|
|
2150
2440
|
"pluginAlias": "faces-cli",
|
|
2151
2441
|
"pluginName": "faces-cli",
|
|
2152
2442
|
"pluginType": "core",
|
|
@@ -2155,21 +2445,15 @@
|
|
|
2155
2445
|
"isESM": true,
|
|
2156
2446
|
"relativePath": [
|
|
2157
2447
|
"dist",
|
|
2158
|
-
"commands",
|
|
2159
|
-
"
|
|
2160
|
-
"
|
|
2448
|
+
"commands",
|
|
2449
|
+
"billing",
|
|
2450
|
+
"topup.js"
|
|
2161
2451
|
]
|
|
2162
2452
|
},
|
|
2163
|
-
"
|
|
2453
|
+
"billing:usage": {
|
|
2164
2454
|
"aliases": [],
|
|
2165
|
-
"args": {
|
|
2166
|
-
|
|
2167
|
-
"description": "Key ID",
|
|
2168
|
-
"name": "key_id",
|
|
2169
|
-
"required": true
|
|
2170
|
-
}
|
|
2171
|
-
},
|
|
2172
|
-
"description": "Update API key metadata (JWT required)",
|
|
2455
|
+
"args": {},
|
|
2456
|
+
"description": "Aggregated usage analytics",
|
|
2173
2457
|
"flags": {
|
|
2174
2458
|
"json": {
|
|
2175
2459
|
"description": "Format output as json.",
|
|
@@ -2202,30 +2486,37 @@
|
|
|
2202
2486
|
"multiple": false,
|
|
2203
2487
|
"type": "option"
|
|
2204
2488
|
},
|
|
2205
|
-
"
|
|
2206
|
-
"description": "
|
|
2207
|
-
"name": "
|
|
2489
|
+
"group-by": {
|
|
2490
|
+
"description": "Group results",
|
|
2491
|
+
"name": "group-by",
|
|
2208
2492
|
"hasDynamicHelp": false,
|
|
2209
2493
|
"multiple": false,
|
|
2494
|
+
"options": [
|
|
2495
|
+
"api_key",
|
|
2496
|
+
"model",
|
|
2497
|
+
"llm",
|
|
2498
|
+
"date"
|
|
2499
|
+
],
|
|
2210
2500
|
"type": "option"
|
|
2211
2501
|
},
|
|
2212
|
-
"
|
|
2213
|
-
"description": "
|
|
2214
|
-
"name": "
|
|
2502
|
+
"from": {
|
|
2503
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
2504
|
+
"name": "from",
|
|
2215
2505
|
"hasDynamicHelp": false,
|
|
2216
2506
|
"multiple": false,
|
|
2217
2507
|
"type": "option"
|
|
2218
2508
|
},
|
|
2219
|
-
"
|
|
2220
|
-
"description": "
|
|
2221
|
-
"name": "
|
|
2222
|
-
"
|
|
2223
|
-
"
|
|
2509
|
+
"to": {
|
|
2510
|
+
"description": "End date (YYYY-MM-DD)",
|
|
2511
|
+
"name": "to",
|
|
2512
|
+
"hasDynamicHelp": false,
|
|
2513
|
+
"multiple": false,
|
|
2514
|
+
"type": "option"
|
|
2224
2515
|
}
|
|
2225
2516
|
},
|
|
2226
2517
|
"hasDynamicHelp": false,
|
|
2227
2518
|
"hiddenAliases": [],
|
|
2228
|
-
"id": "
|
|
2519
|
+
"id": "billing:usage",
|
|
2229
2520
|
"pluginAlias": "faces-cli",
|
|
2230
2521
|
"pluginName": "faces-cli",
|
|
2231
2522
|
"pluginType": "core",
|
|
@@ -2235,11 +2526,11 @@
|
|
|
2235
2526
|
"relativePath": [
|
|
2236
2527
|
"dist",
|
|
2237
2528
|
"commands",
|
|
2238
|
-
"
|
|
2239
|
-
"
|
|
2529
|
+
"billing",
|
|
2530
|
+
"usage.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.2
|
|
3177
|
+
"version": "1.3.2"
|
|
2887
3178
|
}
|