You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/api/types/Face.ts
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ import * as Hume from "..";
6
6
7
7
exportinterfaceFace{
8
8
/** Number of frames per second to process. Other frames will be omitted from the response. Set to `0` to process every frame. */
9
-
fps_pred?: number;
9
+
fpsPred?: number;
10
10
/** Face detection probability threshold. Faces detected with a probability less than this threshold will be omitted from the response. */
11
-
prob_threshold?: number;
11
+
probThreshold?: number;
12
12
/** Whether to return identifiers for faces across frames. If `true`, unique identifiers will be assigned to face bounding boxes to differentiate different faces. If `false`, all faces will be tagged with an `unknown` ID. */
13
-
identify_faces?: boolean;
13
+
identifyFaces?: boolean;
14
14
/** Minimum bounding box side length in pixels to treat as a face. Faces detected with a bounding box side length in pixels less than this threshold will be omitted from the response. */
15
-
min_face_size?: number;
15
+
minFaceSize?: number;
16
16
facs?: Hume.Empty;
17
17
descriptions?: Hume.Empty;
18
18
/** Whether to extract and save the detected faces in the artifacts zip created by each job. */
* Whether to return identifiers for faces across frames. If true, unique identifiers will be assigned to face bounding boxes to differentiate different faces. If false, all faces will be tagged with an "unknown" ID.
18
18
*
19
19
*/
20
-
identify_faces?: boolean;
20
+
identifyFaces?: boolean;
21
21
/**
22
22
* Number of frames per second to process. Other frames will be omitted from the response.
23
23
*
24
24
*/
25
-
fps_pred?: number;
25
+
fpsPred?: number;
26
26
/**
27
27
* Face detection probability threshold. Faces detected with a probability less than this threshold will be omitted from the response.
28
28
*
29
29
*/
30
-
prob_threshold?: number;
30
+
probThreshold?: number;
31
31
/**
32
32
* Minimum bounding box side length in pixels to treat as a face. Faces detected with a bounding box side length in pixels less than this threshold will be omitted from the response.
Copy file name to clipboardExpand all lines: src/api/types/Language.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ import * as Hume from "..";
7
7
exportinterfaceLanguage{
8
8
granularity?: Hume.Granularity;
9
9
/** Whether to return identifiers for speakers over time. If `true`, unique identifiers will be assigned to spoken words to differentiate different speakers. If `false`, all speakers will be tagged with an `unknown` ID. */
* Use reset_stream when one audio file is done being processed and you do not want context to leak across files.
33
33
*
34
34
*/
35
-
reset_stream?: boolean;
35
+
resetStream?: boolean;
36
36
/**
37
37
* Set to `true` to enable the data parameter to be parsed as raw text rather than base64 encoded bytes.
38
38
* This parameter is useful if you want to send text to be processed by the language model, but it cannot be used with other file types like audio, image, or video.
Copy file name to clipboardExpand all lines: src/api/types/Ner.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,5 +4,5 @@
4
4
5
5
exportinterfaceNer{
6
6
/** Whether to return identifiers for speakers over time. If `true`, unique identifiers will be assigned to spoken words to differentiate different speakers. If `false`, all speakers will be tagged with an `unknown` ID. */
Copy file name to clipboardExpand all lines: src/api/types/Prosody.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,6 @@ import * as Hume from "..";
10
10
exportinterfaceProsody{
11
11
granularity?: Hume.Granularity;
12
12
/** Whether to return identifiers for speakers over time. If `true`, unique identifiers will be assigned to spoken words to differentiate different speakers. If `false`, all speakers will be tagged with an `unknown` ID. */
0 commit comments