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: lib/ailanguage/lib/client.ts
+81Lines changed: 81 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -308,6 +308,87 @@ Limitations:
308
308
}
309
309
}
310
310
311
+
/**
312
+
* The API extracts health entities in text records. For each entity, its type and confidence score (between 0 and 1) is returned. It supports passing a batch of records.
313
+
* <p>
314
+
Limitations:
315
+
* - A batch may have up to 100 records.
316
+
* - A record may be up to 5000 characters long.
317
+
* - The total of characters to process in a request can be up to 20,000 characters.
318
+
*
319
+
* This operation does not retry by default if the user has not defined a retry configuration.
320
+
* @param BatchDetectHealthEntityRequest
321
+
* @return BatchDetectHealthEntityResponse
322
+
* @throws OciError when an error occurs
323
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/ailanguage/BatchDetectHealthEntity.ts.html |here} to see how to use BatchDetectHealthEntity API.
* The API extracts entities in text records. For each entity, its type/subtype and confidence score (between 0 and 1) is returned. It supports passing a batch of records.
* OCI Language Service solutions can help enterprise customers integrate AI into their products immediately using our proven,
4
+
pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
5
+
This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
6
+
7
+
* OpenAPI spec version: 20221001
8
+
*
9
+
*
10
+
* NOTE: This class is auto generated by OracleSDKGenerator.
11
+
* Do not edit the class manually.
12
+
*
13
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
14
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
15
+
*/
16
+
17
+
import*asmodelfrom"../model";
18
+
importcommon= require("oci-common");
19
+
20
+
/**
21
+
* The assertion details for health ner.
22
+
*/
23
+
exportinterfaceAssertionDetails{
24
+
/**
25
+
* id of the relation
26
+
*/
27
+
"id": string;
28
+
/**
29
+
* type of assertion ex, Status, Certainty, Temporality, Actor, etc.
30
+
*/
31
+
"type": string;
32
+
/**
33
+
* Possible value for assertion type
34
+
*/
35
+
"value": string;
36
+
/**
37
+
* Score or confidence for health detected entity. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
* OCI Language Service solutions can help enterprise customers integrate AI into their products immediately using our proven,
4
+
pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
5
+
This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
6
+
7
+
* OpenAPI spec version: 20221001
8
+
*
9
+
*
10
+
* NOTE: This class is auto generated by OracleSDKGenerator.
11
+
* Do not edit the class manually.
12
+
*
13
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
14
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
15
+
*/
16
+
17
+
import*asmodelfrom"../model";
18
+
importcommon= require("oci-common");
19
+
20
+
/**
21
+
* The documents details for health entities detect call.
22
+
*/
23
+
exportinterfaceBatchDetectHealthEntityDetails{
24
+
/**
25
+
* The endpoint which have to be used for inferencing.
26
+
*/
27
+
"endpointId": string;
28
+
/**
29
+
* List of Documents for detect health entities.
30
+
*/
31
+
"documents": Array<model.TextDocument>;
32
+
/**
33
+
* List of NLP health ontologies to be linked
34
+
*/
35
+
"linkOntologies"?: Array<string>;
36
+
/**
37
+
* is assertion on input text required. default value true.
38
+
*/
39
+
"isDetectAssertions"?: boolean;
40
+
/**
41
+
* is relationship on input text required. default value true.
* OCI Language Service solutions can help enterprise customers integrate AI into their products immediately using our proven,
4
+
pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
5
+
This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
6
+
7
+
* OpenAPI spec version: 20221001
8
+
*
9
+
*
10
+
* NOTE: This class is auto generated by OracleSDKGenerator.
11
+
* Do not edit the class manually.
12
+
*
13
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
14
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
0 commit comments