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: sdk/healthinsights/azure-healthinsights-radiologyinsights/README.md
+138-12
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
### Prequisites
9
9
10
-
- Python 3.8 or later is required to use this package.
10
+
-[Python 3.8+][python] is required to use this package.
11
11
- You need an [Azure subscription][azure_sub] to use this package.
12
12
- An existing Cognitive Services Health Insights instance.
13
13
@@ -51,7 +51,7 @@ az cognitiveservices account keys list --resource-group <your-resource-group-nam
51
51
Once you have the value for the API key, you can pass it as a string into an instance of **AzureKeyCredential**. Use the key as the credential parameter to authenticate the client:
from azure.core.credentials import AzureKeyCredential
57
57
from azure.healthinsights.radiologyinsights import RadiologyInsightsClient
@@ -76,31 +76,154 @@ Sample code snippets are provided to illustrate using long-running operations [b
76
76
77
77
## Key concepts
78
78
79
+
Once you've initialized a 'RadiologyInsightsClient', you can use it to analyse document text by displaying inferences found within the text.
80
+
* Age Mismatch
81
+
* Laterality Discrepancy
82
+
* Sex Mismatch
83
+
* Complete Order Discrepancy
84
+
* Limited Order Discrepancy
85
+
* Finding
86
+
* Critical Result
87
+
* Follow-up Recommendation
88
+
* Communication
89
+
* Radiology Procedure
79
90
Radiology Insights currently supports one document from one patient. Please take a look [here][inferences] for more detailed information about the inferences this service produces.
80
91
81
92
## Examples
82
93
83
-
### Create a RadiologyInsights request and get the result using an asynchronous client
84
-
94
+
For each inference samples are available that show how to retrieve the information either in a synchronous (block until operation is complete, slower) or in an asynchronous way (non-blocking, faster).
85
95
For an example how to create a client, a request and get the result see the example in the [sample folder][sample_folder].
Copy file name to clipboardexpand all lines: sdk/healthinsights/azure-healthinsights-radiologyinsights/azure/healthinsights/radiologyinsights/_client.py
+3-4
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,10 @@ class RadiologyInsightsClient(
27
27
:param endpoint: Supported Cognitive Services endpoints (protocol and hostname, for example:
Copy file name to clipboardexpand all lines: sdk/healthinsights/azure-healthinsights-radiologyinsights/azure/healthinsights/radiologyinsights/_configuration.py
+4-5
Original file line number
Diff line number
Diff line change
@@ -23,16 +23,15 @@ class RadiologyInsightsClientConfiguration: # pylint: disable=too-many-instance
23
23
:param endpoint: Supported Cognitive Services endpoints (protocol and hostname, for example:
0 commit comments