sofia-cli 0.1.1 → 0.1.4
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/README.md +42 -20
- package/dist/infra/deploy.sh +193 -0
- package/dist/infra/gather-env.sh +211 -0
- package/dist/infra/infra/deploy.sh +193 -0
- package/dist/infra/infra/gather-env.sh +211 -0
- package/dist/infra/infra/main.bicep +90 -0
- package/dist/infra/infra/main.bicepparam +18 -0
- package/dist/infra/infra/resources.bicep +134 -0
- package/dist/infra/infra/teardown.sh +114 -0
- package/dist/infra/main.bicep +90 -0
- package/dist/infra/main.bicepparam +18 -0
- package/dist/infra/resources.bicep +134 -0
- package/dist/infra/teardown.sh +114 -0
- package/dist/src/cli/developCommand.js +0 -2
- package/dist/src/cli/index.js +8 -1
- package/dist/src/cli/workshopCommand.js +1 -1
- package/dist/src/develop/index.js +1 -1
- package/dist/src/develop/pocUtils.js +228 -0
- package/dist/src/develop/ralphLoop.js +3 -3
- package/dist/src/shared/data/cards.json +655 -670
- package/docs/architecture.md +2 -1
- package/package.json +5 -3
- package/src/cli/developCommand.ts +1 -3
- package/src/cli/index.ts +11 -1
- package/src/cli/workshopCommand.ts +21 -17
- package/src/develop/dynamicScaffolder.ts +36 -30
- package/src/develop/index.ts +13 -2
- package/src/develop/pocUtils.ts +296 -0
- package/src/develop/ralphLoop.ts +8 -28
- package/src/develop/templateRegistry.ts +19 -18
- package/src/shared/data/cards.json +655 -670
- package/tests/e2e/developE2e.spec.ts +3 -61
- package/tests/e2e/developFailureE2e.spec.ts +34 -38
- package/tests/integration/pocGithubMcp.spec.ts +29 -39
- package/tests/integration/pocLocalFallback.spec.ts +29 -39
- package/tests/integration/ralphLoopFlow.spec.ts +46 -66
- package/tests/integration/ralphLoopPartial.spec.ts +30 -37
- package/tests/unit/develop/githubMcpAdapter.spec.ts +0 -134
- package/tests/unit/develop/outputValidator.spec.ts +45 -21
- package/tests/unit/develop/ralphLoop.spec.ts +58 -94
- package/tsconfig.json +2 -1
- package/vitest.workspace.ts +5 -0
- package/dist/src/develop/pocScaffolder.js +0 -542
- package/dist/tests/e2e/developE2e.spec.js +0 -126
- package/dist/tests/e2e/developFailureE2e.spec.js +0 -247
- package/dist/tests/e2e/developPty.spec.js +0 -75
- package/dist/tests/e2e/discoveryWebSearchRelevance.spec.js +0 -84
- package/dist/tests/e2e/harness.spec.js +0 -83
- package/dist/tests/e2e/mcpLive.spec.js +0 -120
- package/dist/tests/e2e/newSession.e2e.spec.js +0 -177
- package/dist/tests/e2e/ralphLoopEnrichmentComparison.spec.js +0 -62
- package/dist/tests/e2e/workiqEnrichment.spec.js +0 -56
- package/dist/tests/e2e/zavaSimulation.spec.js +0 -452
- package/dist/tests/fixtures/test-fixture-project/src/add.js +0 -3
- package/dist/tests/fixtures/test-fixture-project/tests/failing.test.js +0 -6
- package/dist/tests/fixtures/test-fixture-project/tests/hanging.test.js +0 -8
- package/dist/tests/fixtures/test-fixture-project/tests/passing.test.js +0 -10
- package/dist/tests/fixtures/test-fixture-project/vitest.config.js +0 -6
- package/dist/tests/integration/autoStartConversation.spec.js +0 -138
- package/dist/tests/integration/defaultCommand.spec.js +0 -147
- package/dist/tests/integration/directCommandNonTty.spec.js +0 -224
- package/dist/tests/integration/directCommandTty.spec.js +0 -151
- package/dist/tests/integration/discoveryEnrichmentFlow.spec.js +0 -175
- package/dist/tests/integration/exportArtifacts.spec.js +0 -202
- package/dist/tests/integration/exportFallbackFlow.spec.js +0 -99
- package/dist/tests/integration/mcpDegradationFlow.spec.js +0 -190
- package/dist/tests/integration/mcpTransportFlow.spec.js +0 -139
- package/dist/tests/integration/newSessionFlow.spec.js +0 -343
- package/dist/tests/integration/pocGithubMcp.spec.js +0 -186
- package/dist/tests/integration/pocLocalFallback.spec.js +0 -171
- package/dist/tests/integration/pocScaffold.spec.js +0 -163
- package/dist/tests/integration/ralphLoopFlow.spec.js +0 -359
- package/dist/tests/integration/ralphLoopPartial.spec.js +0 -368
- package/dist/tests/integration/resumeAndBacktrack.spec.js +0 -247
- package/dist/tests/integration/spinnerLifecycle.spec.js +0 -220
- package/dist/tests/integration/summarizationFlow.spec.js +0 -115
- package/dist/tests/integration/testRunnerReal.spec.js +0 -52
- package/dist/tests/integration/webSearchAgent.spec.js +0 -128
- package/dist/tests/live/copilotSdkLive.spec.js +0 -107
- package/dist/tests/live/zavaFullWorkshop.spec.js +0 -392
- package/dist/tests/setup/loadEnv.js +0 -3
- package/dist/tests/unit/cli/developCommand.spec.js +0 -567
- package/dist/tests/unit/cli/directCommands.spec.js +0 -279
- package/dist/tests/unit/cli/envLoader.spec.js +0 -58
- package/dist/tests/unit/cli/ioContext.spec.js +0 -119
- package/dist/tests/unit/cli/preflight.spec.js +0 -108
- package/dist/tests/unit/cli/statusCommand.spec.js +0 -111
- package/dist/tests/unit/cli/workshopClientFallback.spec.js +0 -80
- package/dist/tests/unit/cli/workshopCommand.spec.js +0 -329
- package/dist/tests/unit/config/vitestEnvSetup.spec.js +0 -13
- package/dist/tests/unit/develop/checkpointState.spec.js +0 -315
- package/dist/tests/unit/develop/codeGenerator.spec.js +0 -355
- package/dist/tests/unit/develop/githubMcpAdapter.spec.js +0 -231
- package/dist/tests/unit/develop/mcpContextEnricher.spec.js +0 -433
- package/dist/tests/unit/develop/outputValidator.spec.js +0 -119
- package/dist/tests/unit/develop/pocScaffolder.spec.js +0 -353
- package/dist/tests/unit/develop/ralphLoop.spec.js +0 -1248
- package/dist/tests/unit/develop/templateRegistry.spec.js +0 -85
- package/dist/tests/unit/develop/testRunner.spec.js +0 -249
- package/dist/tests/unit/infraBicep.spec.js +0 -92
- package/dist/tests/unit/infraDeploy.spec.js +0 -82
- package/dist/tests/unit/infraTeardown.spec.js +0 -63
- package/dist/tests/unit/logging/logger.spec.js +0 -43
- package/dist/tests/unit/loop/conversationLoop.spec.js +0 -592
- package/dist/tests/unit/loop/phaseSummarizer.spec.js +0 -141
- package/dist/tests/unit/loop/streamingMarkdown.spec.js +0 -147
- package/dist/tests/unit/mcp/mcpManager.spec.js +0 -279
- package/dist/tests/unit/mcp/mcpTransport.spec.js +0 -529
- package/dist/tests/unit/mcp/retryPolicy.spec.js +0 -218
- package/dist/tests/unit/mcp/timeoutValidation.spec.js +0 -46
- package/dist/tests/unit/mcp/webSearch.spec.js +0 -567
- package/dist/tests/unit/phases/contextSummarizer.spec.js +0 -140
- package/dist/tests/unit/phases/discoveryEnricher.repeatCalls.spec.js +0 -93
- package/dist/tests/unit/phases/discoveryEnricher.spec.js +0 -411
- package/dist/tests/unit/phases/phaseExtractors.spec.js +0 -352
- package/dist/tests/unit/phases/phaseHandlers.spec.js +0 -425
- package/dist/tests/unit/prompts/promptLoader.spec.js +0 -118
- package/dist/tests/unit/schemas/pocSchemas.spec.js +0 -412
- package/dist/tests/unit/schemas/session.spec.js +0 -257
- package/dist/tests/unit/sessions/exportPaths.spec.js +0 -31
- package/dist/tests/unit/sessions/exportWriter.spec.js +0 -655
- package/dist/tests/unit/sessions/sessionManager.spec.js +0 -151
- package/dist/tests/unit/sessions/sessionStore.spec.js +0 -116
- package/dist/tests/unit/shared/activitySpinner.spec.js +0 -175
- package/dist/tests/unit/shared/cardsLoader.spec.js +0 -76
- package/dist/tests/unit/shared/copilotClient.spec.js +0 -155
- package/dist/tests/unit/shared/errorClassifier.spec.js +0 -131
- package/dist/tests/unit/shared/events.spec.js +0 -55
- package/dist/tests/unit/shared/markdownRenderer.spec.js +0 -35
- package/dist/tests/unit/shared/markdownRendererChunks.spec.js +0 -70
- package/dist/tests/unit/shared/tableRenderer.spec.js +0 -34
- package/dist/vitest.config.js +0 -14
- package/dist/vitest.live.config.js +0 -18
- package/src/develop/pocScaffolder.ts +0 -646
- package/tests/integration/pocScaffold.spec.ts +0 -220
- package/tests/unit/develop/pocScaffolder.spec.ts +0 -451
|
@@ -1,189 +1,412 @@
|
|
|
1
1
|
{
|
|
2
2
|
"categories": [
|
|
3
|
-
"
|
|
3
|
+
"Navigation and control",
|
|
4
|
+
"Environmental awareness",
|
|
5
|
+
"Process optimization",
|
|
4
6
|
"Data and predictive analytics",
|
|
5
|
-
"Task automation",
|
|
6
7
|
"Decision making",
|
|
8
|
+
"Task automation",
|
|
7
9
|
"Visual perception",
|
|
8
10
|
"Text processing",
|
|
9
11
|
"Communication",
|
|
10
|
-
"Speech recognition",
|
|
11
|
-
"Environmental awareness",
|
|
12
12
|
"Content creation",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
13
|
+
"Speech recognition",
|
|
14
|
+
"Information Management"
|
|
15
15
|
],
|
|
16
16
|
"cards": [
|
|
17
17
|
{
|
|
18
|
-
"cardId": "
|
|
19
|
-
"category": "
|
|
20
|
-
"title": "
|
|
21
|
-
"description": "
|
|
18
|
+
"cardId": "automate-home-operations",
|
|
19
|
+
"category": "Navigation and control",
|
|
20
|
+
"title": "Automate home operations",
|
|
21
|
+
"description": "AI-Controlled home automation and robotics",
|
|
22
22
|
"typicalScenarios": [
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"Lighting and Temperature - Control home's lighting and temperature based on user preferences and time of day.",
|
|
24
|
+
"Cleaning - Operate home cleaning robots to maintain a clean living environment."
|
|
25
25
|
],
|
|
26
26
|
"azureServices": [
|
|
27
|
-
"
|
|
28
|
-
"Azure
|
|
27
|
+
"Azure IoT Operations",
|
|
28
|
+
"Azure Digital Twins",
|
|
29
|
+
"Azure AI Foundry"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"cardId": "navigate",
|
|
34
|
+
"category": "Navigation and control",
|
|
35
|
+
"title": "Navigate",
|
|
36
|
+
"description": "Guide people, ground, air and water vehicles to navigate autonomously using AI.",
|
|
37
|
+
"typicalScenarios": [
|
|
38
|
+
"Disaster Response - Operate a walking robot to navigate through a disaster site for rescue operations.",
|
|
39
|
+
"Agriculture - Drive a vehicle that can autonomously navigate a farm for tasks like seeding or harvesting."
|
|
40
|
+
],
|
|
41
|
+
"azureServices": [
|
|
42
|
+
"Azure IoT Operations",
|
|
43
|
+
"Azure Edge",
|
|
44
|
+
"Azure Digital Twins",
|
|
29
45
|
"Azure AI Foundry",
|
|
30
|
-
"
|
|
31
|
-
|
|
46
|
+
"Azure Maps"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"cardId": "human-robot-interaction",
|
|
51
|
+
"category": "Navigation and control",
|
|
52
|
+
"title": "Human-robot interaction",
|
|
53
|
+
"description": "Use AI to power robots that interact or collaborate safely with people.",
|
|
54
|
+
"typicalScenarios": [
|
|
55
|
+
"Customer Service - Operate a robot that can understand and respond to customer queries.",
|
|
56
|
+
"Manufacturing - Program a collaborative robot (cobot) to safely work alongside humans in a factory."
|
|
32
57
|
],
|
|
33
|
-
"
|
|
58
|
+
"azureServices": [
|
|
59
|
+
"Azure IoT Operations",
|
|
60
|
+
"Azure Digital Twins",
|
|
61
|
+
"Azure AI Foundry"
|
|
62
|
+
]
|
|
34
63
|
},
|
|
35
64
|
{
|
|
36
|
-
"cardId": "
|
|
37
|
-
"category": "
|
|
38
|
-
"title": "
|
|
39
|
-
"description": "
|
|
65
|
+
"cardId": "automate-fulfillment",
|
|
66
|
+
"category": "Navigation and control",
|
|
67
|
+
"title": "Automate fulfillment",
|
|
68
|
+
"description": "Use AI to drive warehouse and supermarket systems, and control robots for efficient order fulfillment.",
|
|
40
69
|
"typicalScenarios": [
|
|
41
|
-
"
|
|
42
|
-
"
|
|
70
|
+
"Warehouse - Automate order picking with robots programmed to navigate the layout efficiently.",
|
|
71
|
+
"Fulfillment Center - Operate robots to sort, pack, and dispatch goods based on order information."
|
|
43
72
|
],
|
|
44
73
|
"azureServices": [
|
|
45
|
-
"
|
|
46
|
-
"Azure
|
|
47
|
-
"Azure
|
|
48
|
-
"
|
|
49
|
-
|
|
74
|
+
"Azure IoT Operations",
|
|
75
|
+
"Azure Digital Twins",
|
|
76
|
+
"Azure AI Foundry",
|
|
77
|
+
"Dynamics 365 Supply Chain Management"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"cardId": "interpret-touch-for-control",
|
|
82
|
+
"category": "Environmental awareness",
|
|
83
|
+
"title": "Interpret touch for control",
|
|
84
|
+
"description": "Enable intuitive control through touch-based interactions.",
|
|
85
|
+
"typicalScenarios": [
|
|
86
|
+
"Tech sector - Navigating smartphone or tablet interfaces using touch gestures.",
|
|
87
|
+
"Design sector - Drawing or annotating on touch-enabled devices for creative work."
|
|
50
88
|
],
|
|
51
|
-
"
|
|
89
|
+
"azureServices": [
|
|
90
|
+
"Microsoft Surface",
|
|
91
|
+
"Azure AI Custom Vision"
|
|
92
|
+
]
|
|
52
93
|
},
|
|
53
94
|
{
|
|
54
|
-
"cardId": "
|
|
55
|
-
"category": "
|
|
56
|
-
"title": "
|
|
57
|
-
"description": "
|
|
95
|
+
"cardId": "understand-flavors-and-tastes",
|
|
96
|
+
"category": "Environmental awareness",
|
|
97
|
+
"title": "Understand flavors and tastes",
|
|
98
|
+
"description": "Create and predict flavor profiles based on user purchases and new recipes.",
|
|
58
99
|
"typicalScenarios": [
|
|
59
|
-
"
|
|
60
|
-
"
|
|
100
|
+
"Retail - Create personalized flavor profiles based on food and beverage purchases.",
|
|
101
|
+
"Food Industry - Predict the optimum flavor profiles for new recipes or food products."
|
|
61
102
|
],
|
|
62
103
|
"azureServices": [
|
|
63
|
-
"Azure AI Document Intelligence",
|
|
64
|
-
"Azure AI Search",
|
|
65
104
|
"Azure Machine Learning",
|
|
66
|
-
"
|
|
105
|
+
"Azure AI Foundry",
|
|
106
|
+
"Microsoft Fabric"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"cardId": "predict-chemical-properties",
|
|
111
|
+
"category": "Environmental awareness",
|
|
112
|
+
"title": "Predict chemical properties",
|
|
113
|
+
"description": "Forecast the smell or detect hazards based on chemical profiles.",
|
|
114
|
+
"typicalScenarios": [
|
|
115
|
+
"Chemical Industry - Enhance fabric softener smell with optimal chemical combinations.",
|
|
116
|
+
"Safety and Security - Identify hazards based on unique chemical profiles."
|
|
67
117
|
],
|
|
68
|
-
"
|
|
118
|
+
"azureServices": [
|
|
119
|
+
"Azure Machine Learning",
|
|
120
|
+
"Azure AI Foundry",
|
|
121
|
+
"Microsoft Fabric"
|
|
122
|
+
]
|
|
69
123
|
},
|
|
70
124
|
{
|
|
71
|
-
"cardId": "
|
|
72
|
-
"category": "
|
|
73
|
-
"title": "
|
|
74
|
-
"description": "
|
|
125
|
+
"cardId": "navigate-smartly-with-sensing",
|
|
126
|
+
"category": "Environmental awareness",
|
|
127
|
+
"title": "Navigate smartly with sensing",
|
|
128
|
+
"description": "Detect objects and environments for advanced navigation.",
|
|
75
129
|
"typicalScenarios": [
|
|
76
|
-
"
|
|
77
|
-
"
|
|
130
|
+
"Robotics - Recognize objects and obstacles for safe, efficient robotic navigation.",
|
|
131
|
+
"Retail - Understand surroundings to provide context-aware product recommendations."
|
|
132
|
+
],
|
|
133
|
+
"azureServices": [
|
|
134
|
+
"Azure Machine Learning",
|
|
135
|
+
"Azure AI Vision",
|
|
136
|
+
"Azure Spatial Anchors"
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"cardId": "detect-motion",
|
|
141
|
+
"category": "Environmental awareness",
|
|
142
|
+
"title": "Detect motion",
|
|
143
|
+
"description": "Use motion detection for improved interaction and monitoring.",
|
|
144
|
+
"typicalScenarios": [
|
|
145
|
+
"Sports - Monitor and analyze athlete movements for performance improvements.",
|
|
146
|
+
"Security - Detect unusual motions for enhanced security surveillance and alerts."
|
|
78
147
|
],
|
|
79
148
|
"azureServices": [
|
|
80
149
|
"Azure Machine Learning",
|
|
150
|
+
"Azure IoT Edge",
|
|
81
151
|
"Azure AI Foundry"
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"cardId": "streamline-randd",
|
|
156
|
+
"category": "Process optimization",
|
|
157
|
+
"title": "Streamline R&D",
|
|
158
|
+
"description": "Optimize research and development processes through intelligent AI analysis.",
|
|
159
|
+
"typicalScenarios": [
|
|
160
|
+
"Lab Efficiency - Automate and optimize laboratory processes for increased efficiency with AI.",
|
|
161
|
+
"Product Success Prediction - Predict the success of new product developments based on historical data using AI."
|
|
82
162
|
],
|
|
83
|
-
"
|
|
163
|
+
"azureServices": [
|
|
164
|
+
"Azure Machine Learning",
|
|
165
|
+
"Azure AI Foundry",
|
|
166
|
+
"Microsoft Fabric",
|
|
167
|
+
"Microsoft 365 Agents SDK"
|
|
168
|
+
]
|
|
84
169
|
},
|
|
85
170
|
{
|
|
86
|
-
"cardId": "
|
|
87
|
-
"category": "
|
|
88
|
-
"title": "
|
|
89
|
-
"description": "
|
|
171
|
+
"cardId": "adjust-pricing",
|
|
172
|
+
"category": "Process optimization",
|
|
173
|
+
"title": "Adjust pricing",
|
|
174
|
+
"description": "Use AI for pricing optimization to enhance profitability.",
|
|
90
175
|
"typicalScenarios": [
|
|
91
|
-
"
|
|
92
|
-
"
|
|
176
|
+
"Real-time Adjustments - Adjust product prices in real-time based on market demand and competition with AI.",
|
|
177
|
+
"Price Prediction - Predict the optimal price for a new product or service using AI."
|
|
93
178
|
],
|
|
94
179
|
"azureServices": [
|
|
95
|
-
"Azure AI Document Intelligence",
|
|
96
180
|
"Azure Machine Learning",
|
|
97
|
-
"
|
|
181
|
+
"Microsoft Fabric",
|
|
182
|
+
"Dynamics 365 Finance & Operations",
|
|
183
|
+
"Microsoft 365 Agents SDK"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"cardId": "improve-routing",
|
|
188
|
+
"category": "Process optimization",
|
|
189
|
+
"title": "Improve routing",
|
|
190
|
+
"description": "Leverage AI to efficiently optimize routes, logistics, and supply chains.",
|
|
191
|
+
"typicalScenarios": [
|
|
192
|
+
"Delivery Optimization - Determine the most efficient delivery routes to minimize time and fuel costs using AI.",
|
|
193
|
+
"Inventory Management - Optimize inventory management based on demand forecasting with AI."
|
|
194
|
+
],
|
|
195
|
+
"azureServices": [
|
|
196
|
+
"Azure Maps",
|
|
197
|
+
"Microsoft 365 Copilot for Sales",
|
|
198
|
+
"Dynamics 365 Supply Chain Management",
|
|
199
|
+
"Azure Machine Learning",
|
|
200
|
+
"Azure IoT Operations"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"cardId": "enhance-farming",
|
|
205
|
+
"category": "Process optimization",
|
|
206
|
+
"title": "Enhance farming",
|
|
207
|
+
"description": "Use AI to optimize farming for enhanced efficiency.",
|
|
208
|
+
"typicalScenarios": [
|
|
209
|
+
"Optimal Crop Growth - Utilize AI to analyze soil and weather data for optimal crop growth.",
|
|
210
|
+
"Crop Monitoring - Monitor crops throughout their growth cycle using cameras and sensors to notify if and when intervention is required."
|
|
98
211
|
],
|
|
99
|
-
"
|
|
212
|
+
"azureServices": [
|
|
213
|
+
"Azure Machine Learning",
|
|
214
|
+
"Azure AI Foundry",
|
|
215
|
+
"Microsoft Fabric",
|
|
216
|
+
"Azure IoT Operations",
|
|
217
|
+
"Dynamics 365 Supply Chain Management"
|
|
218
|
+
]
|
|
100
219
|
},
|
|
101
220
|
{
|
|
102
|
-
"cardId": "
|
|
103
|
-
"category": "
|
|
104
|
-
"title": "
|
|
105
|
-
"description": "
|
|
221
|
+
"cardId": "enhance-production",
|
|
222
|
+
"category": "Process optimization",
|
|
223
|
+
"title": "Enhance production",
|
|
224
|
+
"description": "Use AI to optimize production and warehousing for enhanced efficiency.",
|
|
106
225
|
"typicalScenarios": [
|
|
107
|
-
"
|
|
108
|
-
"
|
|
226
|
+
"Maintenance Prediction - Predict machinery maintenance needs with AI to avoid production downtime.",
|
|
227
|
+
"Demand Forecast - Predict demand to optimize production, storage, and delivery of goods."
|
|
109
228
|
],
|
|
110
229
|
"azureServices": [
|
|
230
|
+
"Azure Machine Learning",
|
|
111
231
|
"Azure AI Foundry",
|
|
232
|
+
"Microsoft Fabric",
|
|
233
|
+
"Azure IoT Operations",
|
|
234
|
+
"Dynamics 365 Supply Chain Management"
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"cardId": "manage-complex-systems",
|
|
239
|
+
"category": "Process optimization",
|
|
240
|
+
"title": "Manage complex systems",
|
|
241
|
+
"description": "Use AI to efficiently manage cities, countries, and large factories.",
|
|
242
|
+
"typicalScenarios": [
|
|
243
|
+
"Traffic Optimization - Analyze city traffic data with AI to optimize road networks and reduce congestion.",
|
|
244
|
+
"Resource Management - Use AI to manage national resources and public services efficiently."
|
|
245
|
+
],
|
|
246
|
+
"azureServices": [
|
|
112
247
|
"Azure Machine Learning",
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
|
|
248
|
+
"Azure Digital Twins",
|
|
249
|
+
"Dynamics 365 Supply Chain Management",
|
|
250
|
+
"Microsoft 365 Agents SDK"
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"cardId": "spot-damage-predict-failure",
|
|
255
|
+
"category": "Process optimization",
|
|
256
|
+
"title": "Spot damage, predict failure",
|
|
257
|
+
"description": "Leverage AI for damage detection and predictive maintenance.",
|
|
258
|
+
"typicalScenarios": [
|
|
259
|
+
"Damage Detection - Detect signs of damage in machinery for timely repairs using AI.",
|
|
260
|
+
"Predictive Maintenance - Predict maintenance needs with AI to prevent unexpected equipment breakdowns."
|
|
261
|
+
],
|
|
262
|
+
"azureServices": [
|
|
263
|
+
"Azure Machine Learning",
|
|
264
|
+
"Dynamics 365 Field Service",
|
|
265
|
+
"Azure IoT Operations"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"cardId": "optimize-sales-workflows",
|
|
270
|
+
"category": "Process optimization",
|
|
271
|
+
"title": "Optimize sales workflows",
|
|
272
|
+
"description": "Use AI for predictive insights and automation in sales workflows, streamlining tasks and CRM.",
|
|
273
|
+
"typicalScenarios": [
|
|
274
|
+
"Lead Scoring - Evaluate past data with AI to prioritize leads, targeting promising prospects.",
|
|
275
|
+
"Tailored Follow-Ups - Assess customer interactions with AI to suggest custom actions, boosting sales closure rates."
|
|
276
|
+
],
|
|
277
|
+
"azureServices": [
|
|
278
|
+
"Azure Machine Learning",
|
|
279
|
+
"Microsoft Fabric",
|
|
280
|
+
"Microsoft 365 Copilot for Sales"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"cardId": "streamline-field-service",
|
|
285
|
+
"category": "Process optimization",
|
|
286
|
+
"title": "Streamline field service",
|
|
287
|
+
"description": "Boost technician productivity and simplify work order management through AI.",
|
|
288
|
+
"typicalScenarios": [
|
|
289
|
+
"Field Service - Technicians receive summarized key points of work orders, enabling quicker job comprehension.",
|
|
290
|
+
"Management - Efficiently schedule and manage work orders with AI assistance."
|
|
291
|
+
],
|
|
292
|
+
"azureServices": [
|
|
293
|
+
"Dynamics 365 Field Service",
|
|
294
|
+
"Azure AI Language",
|
|
295
|
+
"Azure AI Foundry"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"cardId": "simplify-app-development",
|
|
300
|
+
"category": "Process optimization",
|
|
301
|
+
"title": "Simplify app development",
|
|
302
|
+
"description": "Speed up development and enhance creativity by transforming natural language into functional app components.",
|
|
303
|
+
"typicalScenarios": [
|
|
304
|
+
"HR - Create employee onboarding apps quickly by describing the desired functionality.",
|
|
305
|
+
"Retail - Develop inventory management apps by converting sketches or designs into working prototypes."
|
|
306
|
+
],
|
|
307
|
+
"azureServices": [
|
|
308
|
+
"Power Platform - Power Apps",
|
|
309
|
+
"GitHub Copilot"
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"cardId": "quality-control-and-maintenance",
|
|
314
|
+
"category": "Process optimization",
|
|
315
|
+
"title": "Quality control & maintenance",
|
|
316
|
+
"description": "Use AI for enhanced quality control and predictive maintenance.",
|
|
317
|
+
"typicalScenarios": [
|
|
318
|
+
"Real-Time Defect Detection - Identify product defects in real-time during production processes with AI.",
|
|
319
|
+
"Quality Standards Improvement - Analyze historical data with AI to improve quality control standards."
|
|
117
320
|
],
|
|
118
|
-
"
|
|
321
|
+
"azureServices": [
|
|
322
|
+
"Azure Machine Learning",
|
|
323
|
+
"Azure IoT Edge",
|
|
324
|
+
"Dynamics 365 Field Service",
|
|
325
|
+
"Azure AI Vision",
|
|
326
|
+
"Microsoft 365 Agents SDK"
|
|
327
|
+
]
|
|
119
328
|
},
|
|
120
329
|
{
|
|
121
330
|
"cardId": "visualize-data",
|
|
122
331
|
"category": "Data and predictive analytics",
|
|
123
|
-
"title": "Visualize
|
|
332
|
+
"title": "Visualize data",
|
|
124
333
|
"description": "Leverage AI to automatically visualize and interpret data relationships.",
|
|
125
334
|
"typicalScenarios": [
|
|
126
|
-
"Sales - Use AI to generate visuals and reports, identifying customer trends and buying patterns",
|
|
127
|
-
"Business Analysis - Employ AI for swift performance reporting and visual data arrangement"
|
|
335
|
+
"Sales - Use AI to generate visuals and reports, identifying customer trends and buying patterns.",
|
|
336
|
+
"Business Analysis - Employ AI for swift performance reporting and visual data arrangement."
|
|
128
337
|
],
|
|
129
338
|
"azureServices": [
|
|
130
339
|
"Microsoft Fabric",
|
|
131
340
|
"Azure AI Foundry",
|
|
132
341
|
"Azure Machine Learning",
|
|
133
342
|
"Microsoft 365 Copilot for Sales"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"cardId": "gain-market-insights",
|
|
347
|
+
"category": "Data and predictive analytics",
|
|
348
|
+
"title": "Gain market insights",
|
|
349
|
+
"description": "Utilize AI to understand market trends, forecast, and assess competitor behavior.",
|
|
350
|
+
"typicalScenarios": [
|
|
351
|
+
"Retail - Analyze data points to understand market trends and inform strategic decisions.",
|
|
352
|
+
"Marketing - Track competitors' digital footprint to comprehend their strategies and performance."
|
|
134
353
|
],
|
|
135
|
-
"
|
|
354
|
+
"azureServices": [
|
|
355
|
+
"Azure AI Foundry",
|
|
356
|
+
"Azure Machine Learning",
|
|
357
|
+
"Power BI",
|
|
358
|
+
"Bing Search API",
|
|
359
|
+
"Azure Maps",
|
|
360
|
+
"Azure AI Language"
|
|
361
|
+
]
|
|
136
362
|
},
|
|
137
363
|
{
|
|
138
364
|
"cardId": "analyze-sentiments",
|
|
139
365
|
"category": "Data and predictive analytics",
|
|
140
|
-
"title": "Analyze
|
|
366
|
+
"title": "Analyze sentiments",
|
|
141
367
|
"description": "Leverage AI to detect and analyze sentiment in text and images.",
|
|
142
368
|
"typicalScenarios": [
|
|
143
|
-
"Customer Service - Use AI to gauge customer sentiment from feedback or product reviews",
|
|
144
|
-
"Marketing - Analyze social media comments with AI to assess public sentiment about a brand or event"
|
|
369
|
+
"Customer Service - Use AI to gauge customer sentiment from feedback or product reviews.",
|
|
370
|
+
"Marketing - Analyze social media comments with AI to assess public sentiment about a brand or event."
|
|
145
371
|
],
|
|
146
372
|
"azureServices": [
|
|
147
373
|
"Azure AI Language",
|
|
148
374
|
"Azure Machine Learning",
|
|
149
375
|
"Azure AI Foundry",
|
|
150
376
|
"Azure AI Custom Vision",
|
|
151
|
-
"Power Platform
|
|
152
|
-
]
|
|
153
|
-
"optionalCategory": "Sentiment Analysis"
|
|
377
|
+
"Power Platform AI Builder"
|
|
378
|
+
]
|
|
154
379
|
},
|
|
155
380
|
{
|
|
156
381
|
"cardId": "identify-data-patterns",
|
|
157
382
|
"category": "Data and predictive analytics",
|
|
158
|
-
"title": "Identify
|
|
383
|
+
"title": "Identify data patterns",
|
|
159
384
|
"description": "Use AI to detect patterns, connections, and associations in your data.",
|
|
160
385
|
"typicalScenarios": [
|
|
161
|
-
"Transportation - Analyze traffic data with AI to identify congestion times and high-accident zones",
|
|
162
|
-
"Healthcare - Use AI to analyze large amounts of healthcare data to detect early signs of diseases like cancer or Alzheimer
|
|
386
|
+
"Transportation - Analyze traffic data with AI to identify congestion times and high-accident zones.",
|
|
387
|
+
"Healthcare - Use AI to analyze large amounts of healthcare data to detect early signs of diseases like cancer or Alzheimer’s."
|
|
163
388
|
],
|
|
164
389
|
"azureServices": [
|
|
165
390
|
"Azure Machine Learning",
|
|
166
391
|
"Copilot for Power BI",
|
|
167
392
|
"Microsoft Fabric",
|
|
168
393
|
"Azure AI Search"
|
|
169
|
-
]
|
|
170
|
-
"optionalCategory": "Data Analysis"
|
|
394
|
+
]
|
|
171
395
|
},
|
|
172
396
|
{
|
|
173
397
|
"cardId": "detect-anomalies",
|
|
174
398
|
"category": "Data and predictive analytics",
|
|
175
|
-
"title": "Detect
|
|
399
|
+
"title": "Detect anomalies",
|
|
176
400
|
"description": "Use AI to identify unusual patterns in data streams or image data.",
|
|
177
401
|
"typicalScenarios": [
|
|
178
|
-
"Banking - Detect suspicious credit card activities that may indicate fraud",
|
|
402
|
+
"Banking - Detect suspicious credit card activities that may indicate fraud.",
|
|
179
403
|
"Cybersecurity - Spot unusual traffic patterns in login data to detect potential cyber attacks."
|
|
180
404
|
],
|
|
181
405
|
"azureServices": [
|
|
182
406
|
"Azure Machine Learning",
|
|
183
407
|
"Azure AI Custom Vision",
|
|
184
408
|
"Azure Sentinel"
|
|
185
|
-
]
|
|
186
|
-
"optionalCategory": "Anomaly Detection"
|
|
409
|
+
]
|
|
187
410
|
},
|
|
188
411
|
{
|
|
189
412
|
"cardId": "understand-customers",
|
|
@@ -199,14 +422,13 @@
|
|
|
199
422
|
"Dynamics 365 Customer Insights",
|
|
200
423
|
"Azure AI Foundry",
|
|
201
424
|
"Microsoft Fabric"
|
|
202
|
-
]
|
|
203
|
-
"optionalCategory": "Customer Service"
|
|
425
|
+
]
|
|
204
426
|
},
|
|
205
427
|
{
|
|
206
428
|
"cardId": "predict-risk-or-fraud",
|
|
207
429
|
"category": "Data and predictive analytics",
|
|
208
430
|
"title": "Predict risk or fraud",
|
|
209
|
-
"description": "Use AI to detect suspicious activities and predict potential
|
|
431
|
+
"description": "Use AI to detect suspicious activities and predict potential fraud risks in real-time.",
|
|
210
432
|
"typicalScenarios": [
|
|
211
433
|
"Banking - Identify suspicious patterns in transactions to detect potential fraud.",
|
|
212
434
|
"Cybersecurity - Predict threats in real-time to prevent data breaches."
|
|
@@ -214,16 +436,14 @@
|
|
|
214
436
|
"azureServices": [
|
|
215
437
|
"Azure AI Foundry",
|
|
216
438
|
"Microsoft Fabric",
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
|
|
220
|
-
],
|
|
221
|
-
"optionalCategory": "Risk Management"
|
|
439
|
+
"Azure Machine Learning",
|
|
440
|
+
"Dynamics 365 Fraud Protection"
|
|
441
|
+
]
|
|
222
442
|
},
|
|
223
443
|
{
|
|
224
|
-
"cardId": "forecast-events-outcomes",
|
|
444
|
+
"cardId": "forecast-events-and-outcomes",
|
|
225
445
|
"category": "Data and predictive analytics",
|
|
226
|
-
"title": "Forecast
|
|
446
|
+
"title": "Forecast events & outcomes",
|
|
227
447
|
"description": "Use AI to predict future scenarios and outcomes based on historical data.",
|
|
228
448
|
"typicalScenarios": [
|
|
229
449
|
"Project Management - Estimate project completion time based on past performance data.",
|
|
@@ -232,13 +452,12 @@
|
|
|
232
452
|
"azureServices": [
|
|
233
453
|
"Azure Machine Learning",
|
|
234
454
|
"Microsoft Fabric"
|
|
235
|
-
]
|
|
236
|
-
"optionalCategory": "Forecasting"
|
|
455
|
+
]
|
|
237
456
|
},
|
|
238
457
|
{
|
|
239
458
|
"cardId": "predict-customer-churn",
|
|
240
459
|
"category": "Data and predictive analytics",
|
|
241
|
-
"title": "Predict
|
|
460
|
+
"title": "Predict customer churn",
|
|
242
461
|
"description": "Use AI to anticipate customer churn and respond proactively to retain them.",
|
|
243
462
|
"typicalScenarios": [
|
|
244
463
|
"Subscription Services - Predict potential cancellations based on customer usage patterns.",
|
|
@@ -248,13 +467,12 @@
|
|
|
248
467
|
"Azure Machine Learning",
|
|
249
468
|
"Microsoft Fabric",
|
|
250
469
|
"Dynamics 365 Customer Insights"
|
|
251
|
-
]
|
|
252
|
-
"optionalCategory": "Customer Retention"
|
|
470
|
+
]
|
|
253
471
|
},
|
|
254
472
|
{
|
|
255
|
-
"cardId": "predict-plan-demand",
|
|
473
|
+
"cardId": "predict-and-plan-demand",
|
|
256
474
|
"category": "Data and predictive analytics",
|
|
257
|
-
"title": "Predict &
|
|
475
|
+
"title": "Predict & plan demand",
|
|
258
476
|
"description": "Use AI to analyze sales data, identify patterns, and forecast demand accurately.",
|
|
259
477
|
"typicalScenarios": [
|
|
260
478
|
"Sales - Analyze historical sales data to identify patterns and seasonality.",
|
|
@@ -265,13 +483,12 @@
|
|
|
265
483
|
"Microsoft Fabric",
|
|
266
484
|
"Dynamics 365 Supply Chain Management",
|
|
267
485
|
"Azure AI Foundry"
|
|
268
|
-
]
|
|
269
|
-
"optionalCategory": "Demand Forecasting"
|
|
486
|
+
]
|
|
270
487
|
},
|
|
271
488
|
{
|
|
272
489
|
"cardId": "simplify-data-analysis",
|
|
273
490
|
"category": "Data and predictive analytics",
|
|
274
|
-
"title": "Simplify
|
|
491
|
+
"title": "Simplify data analysis",
|
|
275
492
|
"description": "Use AI to create complex data queries and dashboards through natural language, making insights more accessible.",
|
|
276
493
|
"typicalScenarios": [
|
|
277
494
|
"Sales - Generate expressions for trend analysis by describing the analytical goal.",
|
|
@@ -281,217 +498,201 @@
|
|
|
281
498
|
"Copilot for Power BI",
|
|
282
499
|
"Azure AI Language",
|
|
283
500
|
"Azure AI Foundry"
|
|
284
|
-
]
|
|
285
|
-
"optionalCategory": "Data Analysis"
|
|
501
|
+
]
|
|
286
502
|
},
|
|
287
503
|
{
|
|
288
|
-
"cardId": "
|
|
289
|
-
"category": "
|
|
290
|
-
"title": "
|
|
291
|
-
"description": "
|
|
504
|
+
"cardId": "spot-anomalies",
|
|
505
|
+
"category": "Decision making",
|
|
506
|
+
"title": "Spot anomalies",
|
|
507
|
+
"description": "Leverage AI to find unusual data patterns or outliers, allowing for early issue detection and proactive solutions.",
|
|
292
508
|
"typicalScenarios": [
|
|
293
|
-
"
|
|
294
|
-
"
|
|
509
|
+
"Manufacturing - Monitor equipment data to spot anomalies, enable proactive maintenance, and avoid costly breakdowns.",
|
|
510
|
+
"Healthcare - Detect anomalies in patient health data for early detection of potential health issues."
|
|
295
511
|
],
|
|
296
512
|
"azureServices": [
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
|
|
300
|
-
],
|
|
301
|
-
"optionalCategory": "Office Automation"
|
|
513
|
+
"Azure Machine Learning",
|
|
514
|
+
"Azure AI Foundry"
|
|
515
|
+
]
|
|
302
516
|
},
|
|
303
517
|
{
|
|
304
|
-
"cardId": "
|
|
305
|
-
"category": "
|
|
306
|
-
"title": "
|
|
307
|
-
"description": "Use AI to
|
|
518
|
+
"cardId": "moderate-content",
|
|
519
|
+
"category": "Decision making",
|
|
520
|
+
"title": "Moderate content",
|
|
521
|
+
"description": "Use AI to automatically detect and filter inappropriate or harmful content, ensuring a safe digital environment.",
|
|
308
522
|
"typicalScenarios": [
|
|
309
|
-
"
|
|
310
|
-
"
|
|
523
|
+
"E-commerce - Review product listings and user reviews for potentially fraudulent or inappropriate content.",
|
|
524
|
+
"Social Media - Filter offensive language, images, and videos to maintain a safe online community."
|
|
311
525
|
],
|
|
312
526
|
"azureServices": [
|
|
313
527
|
"Azure AI Foundry",
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
]
|
|
318
|
-
"optionalCategory": "Home Automation"
|
|
528
|
+
"Azure AI Content Safety",
|
|
529
|
+
"Azure AI Custom Vision",
|
|
530
|
+
"Azure AI Vision"
|
|
531
|
+
]
|
|
319
532
|
},
|
|
320
533
|
{
|
|
321
|
-
"cardId": "
|
|
322
|
-
"category": "
|
|
323
|
-
"title": "
|
|
324
|
-
"description": "
|
|
534
|
+
"cardId": "enhance-decisions",
|
|
535
|
+
"category": "Decision making",
|
|
536
|
+
"title": "Enhance decisions",
|
|
537
|
+
"description": "Use AI to assist in complex decision making, optimize processes, and predict outcomes, boosting efficiency and effectiveness.",
|
|
325
538
|
"typicalScenarios": [
|
|
326
|
-
"
|
|
327
|
-
"
|
|
539
|
+
"Retail - Predict sales trends and optimize inventory management for business efficiency.",
|
|
540
|
+
"Healthcare - Aid clinical decisions by predicting patient outcomes based on historical data."
|
|
328
541
|
],
|
|
329
542
|
"azureServices": [
|
|
330
543
|
"Azure AI Foundry",
|
|
331
|
-
"
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"cardId": "workflow-creation",
|
|
337
|
-
"category": "Task automation",
|
|
338
|
-
"title": "Workflow creation",
|
|
339
|
-
"description": "Use AI to create the steps for a workflow, enhancing efficiency.",
|
|
340
|
-
"typicalScenarios": [
|
|
341
|
-
"Finance - Automate expense approval processes by letting AI interpret descriptive sentences",
|
|
342
|
-
"Customer Service - Streamline responses by generating automation flows from common inquiries"
|
|
343
|
-
],
|
|
344
|
-
"azureServices": [
|
|
345
|
-
"Microsoft Copilot Studio",
|
|
346
|
-
"Azure AI Language",
|
|
347
|
-
"Microsoft 365 Copilot",
|
|
348
|
-
"Microsoft 365 Agents SDK"
|
|
349
|
-
],
|
|
350
|
-
"optionalCategory": "Workflow Automation"
|
|
544
|
+
"Azure Machine Learning",
|
|
545
|
+
"Dynamics 365 Customer Insights"
|
|
546
|
+
]
|
|
351
547
|
},
|
|
352
548
|
{
|
|
353
|
-
"cardId": "
|
|
549
|
+
"cardId": "personalize-content",
|
|
354
550
|
"category": "Decision making",
|
|
355
|
-
"title": "
|
|
356
|
-
"description": "Leverage AI
|
|
551
|
+
"title": "Personalize content",
|
|
552
|
+
"description": "Leverage AI to generate tailored content suggestions based on user behavior, boosting customer engagement and experience.",
|
|
357
553
|
"typicalScenarios": [
|
|
358
|
-
"
|
|
359
|
-
"
|
|
554
|
+
"E-commerce - Personalize product suggestions based on user browsing history, purchasing behavior, and satisfaction.",
|
|
555
|
+
"Streaming Services - Offer tailored movie or music recommendations based on user preferences, improving user experience."
|
|
360
556
|
],
|
|
361
557
|
"azureServices": [
|
|
362
558
|
"Azure Machine Learning",
|
|
559
|
+
"Dynamics 365 Customer Insights",
|
|
363
560
|
"Azure AI Foundry"
|
|
364
|
-
]
|
|
365
|
-
"optionalCategory": "Process Improvement"
|
|
561
|
+
]
|
|
366
562
|
},
|
|
367
563
|
{
|
|
368
|
-
"cardId": "
|
|
564
|
+
"cardId": "boost-sales-with-insights",
|
|
369
565
|
"category": "Decision making",
|
|
370
|
-
"title": "
|
|
371
|
-
"description": "
|
|
566
|
+
"title": "Boost sales with insights",
|
|
567
|
+
"description": "Leverage CRM data with AI to enhance sales strategies and customer relationships.",
|
|
372
568
|
"typicalScenarios": [
|
|
373
|
-
"
|
|
374
|
-
"
|
|
569
|
+
"Marketing - Draft personalized sales emails using data insights for improved engagement.",
|
|
570
|
+
"Sales - Summarize customer meetings and auto-update records, ensuring data accuracy."
|
|
375
571
|
],
|
|
376
572
|
"azureServices": [
|
|
573
|
+
"Dynamics 365 Sales",
|
|
377
574
|
"Microsoft 365 Copilot for Sales",
|
|
378
575
|
"Microsoft 365 Copilot for Service",
|
|
379
|
-
"
|
|
380
|
-
]
|
|
381
|
-
"optionalCategory": "Strategic Planning"
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
"cardId": "resolve-complex-issues",
|
|
385
|
-
"category": "Decision making",
|
|
386
|
-
"title": "Resolve Complex Issues",
|
|
387
|
-
"description": "Use AI to analyze vast data, forecast outcomes, and provide optimized solutions to intricate problems.",
|
|
388
|
-
"typicalScenarios": [
|
|
389
|
-
"Supply Chain - Enhance logistics and inventory management by predicting demand and identifying bottlenecks.",
|
|
390
|
-
"Cybersecurity - Employ AI to detect potential security threats, enabling proactive defense strategies."
|
|
391
|
-
],
|
|
392
|
-
"azureServices": [
|
|
393
|
-
"Azure Machine Learning",
|
|
394
|
-
"Azure AI Foundry",
|
|
395
|
-
"Dynamics 365 Supply Chain Management"
|
|
396
|
-
],
|
|
397
|
-
"optionalCategory": "Problem Solving"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"cardId": "spot-anomalies",
|
|
401
|
-
"category": "Decision making",
|
|
402
|
-
"title": "Spot Anomalies",
|
|
403
|
-
"description": "Leverage AI to find unusual data patterns or outliers, allowing for early issue detection and proactive solutions.",
|
|
404
|
-
"typicalScenarios": [
|
|
405
|
-
"Manufacturing - Monitor equipment data to spot anomalies, enable proactive maintenance and avoid costly breakdowns.",
|
|
406
|
-
"Healthcare - Detect anomalies in patient health data for early detection of potential health issues."
|
|
407
|
-
],
|
|
408
|
-
"azureServices": [
|
|
409
|
-
"Azure Machine Learning",
|
|
410
|
-
"Azure AI Foundry"
|
|
411
|
-
],
|
|
412
|
-
"optionalCategory": "Anomaly Detection"
|
|
576
|
+
"Dynamics 365 Customer Insights"
|
|
577
|
+
]
|
|
413
578
|
},
|
|
414
579
|
{
|
|
415
|
-
"cardId": "
|
|
580
|
+
"cardId": "streamline-financial-processes",
|
|
416
581
|
"category": "Decision making",
|
|
417
|
-
"title": "
|
|
418
|
-
"description": "
|
|
419
|
-
"typicalScenarios": [
|
|
420
|
-
"E-commerce -
|
|
421
|
-
"
|
|
422
|
-
],
|
|
423
|
-
"azureServices": [
|
|
424
|
-
"Azure AI Foundry",
|
|
425
|
-
"Azure AI Content Safety",
|
|
426
|
-
"Azure AI Custom Vision",
|
|
427
|
-
"Azure AI Vision"
|
|
582
|
+
"title": "Streamline financial processes",
|
|
583
|
+
"description": "Utilize AI to automate financial tasks, improving accuracy and efficiency.",
|
|
584
|
+
"typicalScenarios": [
|
|
585
|
+
"E-commerce - Auto-generate detailed product descriptions for online catalogs.",
|
|
586
|
+
"Banking - Assess credit risks by analyzing customer financial data."
|
|
428
587
|
],
|
|
429
|
-
"
|
|
588
|
+
"azureServices": [
|
|
589
|
+
"Dynamics 365 Finance & Operations",
|
|
590
|
+
"Azure AI Language"
|
|
591
|
+
]
|
|
430
592
|
},
|
|
431
593
|
{
|
|
432
|
-
"cardId": "
|
|
594
|
+
"cardId": "refine-processes",
|
|
433
595
|
"category": "Decision making",
|
|
434
|
-
"title": "
|
|
435
|
-
"description": "
|
|
596
|
+
"title": "Refine processes",
|
|
597
|
+
"description": "Leverage AI’s ability to learn from past experiences and enhance actions, leading to better performance and efficiency.",
|
|
436
598
|
"typicalScenarios": [
|
|
437
|
-
"
|
|
438
|
-
"
|
|
599
|
+
"Manufacturing - Use AI for predictive maintenance, minimize downtime, and reduce costs.",
|
|
600
|
+
"Education - Employ AI to adapt to students’ learning styles, improving educational outcomes."
|
|
439
601
|
],
|
|
440
602
|
"azureServices": [
|
|
441
|
-
"Azure AI Foundry",
|
|
442
603
|
"Azure Machine Learning",
|
|
443
|
-
"Dynamics 365 Customer Insights",
|
|
444
604
|
"Azure AI Foundry"
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"cardId": "optimize-strategy",
|
|
609
|
+
"category": "Decision making",
|
|
610
|
+
"title": "Optimize strategy",
|
|
611
|
+
"description": "Use AI to predict and execute proactive strategies, optimizing results and boosting efficiency.",
|
|
612
|
+
"typicalScenarios": [
|
|
613
|
+
"Sales & Marketing - Predict the optimal strategy or sales approach for each customer, increasing conversions.",
|
|
614
|
+
"Customer Service - Use AI to suggest the best response to customer inquiries, enhancing satisfaction and retention."
|
|
445
615
|
],
|
|
446
|
-
"
|
|
616
|
+
"azureServices": [
|
|
617
|
+
"Microsoft 365 Copilot for Sales",
|
|
618
|
+
"Microsoft 365 Copilot for Service",
|
|
619
|
+
"Azure Machine Learning"
|
|
620
|
+
]
|
|
447
621
|
},
|
|
448
622
|
{
|
|
449
|
-
"cardId": "
|
|
623
|
+
"cardId": "resolve-complex-issues",
|
|
450
624
|
"category": "Decision making",
|
|
451
|
-
"title": "
|
|
452
|
-
"description": "
|
|
625
|
+
"title": "Resolve complex issues",
|
|
626
|
+
"description": "Use AI to analyze vast data, forecast outcomes, and provide optimized solutions to intricate problems.",
|
|
453
627
|
"typicalScenarios": [
|
|
454
|
-
"
|
|
455
|
-
"
|
|
628
|
+
"Supply Chain - Enhance logistics and inventory management by predicting demand and identifying bottlenecks.",
|
|
629
|
+
"Cybersecurity - Employ AI to detect potential security threats, enabling proactive defense strategies."
|
|
456
630
|
],
|
|
457
631
|
"azureServices": [
|
|
458
632
|
"Azure Machine Learning",
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
]
|
|
462
|
-
"optionalCategory": "Personalization"
|
|
633
|
+
"Azure AI Foundry",
|
|
634
|
+
"Dynamics 365 Supply Chain Management"
|
|
635
|
+
]
|
|
463
636
|
},
|
|
464
637
|
{
|
|
465
|
-
"cardId": "
|
|
466
|
-
"category": "
|
|
467
|
-
"title": "
|
|
468
|
-
"description": "
|
|
638
|
+
"cardId": "help-with-admin-tasks",
|
|
639
|
+
"category": "Task automation",
|
|
640
|
+
"title": "Help with admin tasks",
|
|
641
|
+
"description": "Use AI to automate repetitive and time-consuming office tasks.",
|
|
469
642
|
"typicalScenarios": [
|
|
470
|
-
"
|
|
471
|
-
"
|
|
643
|
+
"Finance - Automate data entry and report generation for increased efficiency.",
|
|
644
|
+
"HR - Intelligently schedule meetings based on everyone's availability."
|
|
472
645
|
],
|
|
473
646
|
"azureServices": [
|
|
474
|
-
"
|
|
475
|
-
"Microsoft 365 Copilot
|
|
476
|
-
"Microsoft 365
|
|
477
|
-
|
|
647
|
+
"Microsoft Copilot Studio",
|
|
648
|
+
"Microsoft 365 Copilot",
|
|
649
|
+
"Microsoft 365 Agents SDK"
|
|
650
|
+
]
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"cardId": "simplify-household-tasks",
|
|
654
|
+
"category": "Task automation",
|
|
655
|
+
"title": "Simplify household tasks",
|
|
656
|
+
"description": "Use AI to automate and simplify everyday household tasks.",
|
|
657
|
+
"typicalScenarios": [
|
|
658
|
+
"Smart Home - Control lights, thermostats, and locks through voice commands.",
|
|
659
|
+
"Energy Management - Monitor and regulate appliance energy usage for optimized consumption."
|
|
478
660
|
],
|
|
479
|
-
"
|
|
661
|
+
"azureServices": [
|
|
662
|
+
"Azure AI Foundry",
|
|
663
|
+
"Microsoft 365 Agents SDK",
|
|
664
|
+
"Power Platform: AI Builder"
|
|
665
|
+
]
|
|
480
666
|
},
|
|
481
667
|
{
|
|
482
|
-
"cardId": "
|
|
483
|
-
"category": "
|
|
484
|
-
"title": "
|
|
485
|
-
"description": "Utilize AI to
|
|
668
|
+
"cardId": "help-with-personal-tasks",
|
|
669
|
+
"category": "Task automation",
|
|
670
|
+
"title": "Help with personal tasks",
|
|
671
|
+
"description": "Utilize AI to assist with daily personal tasks and health management.",
|
|
486
672
|
"typicalScenarios": [
|
|
487
|
-
"
|
|
488
|
-
"
|
|
673
|
+
"Health & Fitness - Get personalized fitness and health recommendations based on lifestyle and goals.",
|
|
674
|
+
"Personal Reminders - Set reminders for appointments, medication intake, or bill payments."
|
|
489
675
|
],
|
|
490
676
|
"azureServices": [
|
|
491
|
-
"
|
|
492
|
-
"
|
|
677
|
+
"Azure AI Foundry",
|
|
678
|
+
"Microsoft 365 Copilot"
|
|
679
|
+
]
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"cardId": "workflow-creation",
|
|
683
|
+
"category": "Task automation",
|
|
684
|
+
"title": "Workflow creation",
|
|
685
|
+
"description": "Use AI to create the steps for a workflow, enhancing efficiency.",
|
|
686
|
+
"typicalScenarios": [
|
|
687
|
+
"Finance - Automate expense approval processes by letting AI interpret descriptive sentences.",
|
|
688
|
+
"Customer Service - Streamline responses by generating automation flows from common inquiries."
|
|
493
689
|
],
|
|
494
|
-
"
|
|
690
|
+
"azureServices": [
|
|
691
|
+
"Microsoft Copilot Studio",
|
|
692
|
+
"Azure AI Language",
|
|
693
|
+
"Microsoft 365 Copilot",
|
|
694
|
+
"Microsoft 365 Agents SDK"
|
|
695
|
+
]
|
|
495
696
|
},
|
|
496
697
|
{
|
|
497
698
|
"cardId": "recognize-and-understand-forms",
|
|
@@ -505,32 +706,29 @@
|
|
|
505
706
|
"azureServices": [
|
|
506
707
|
"Azure AI Foundry",
|
|
507
708
|
"Azure AI Document Intelligence",
|
|
508
|
-
"Power Platform
|
|
709
|
+
"Power Platform: AI Builder",
|
|
509
710
|
"Azure AI Content Understanding"
|
|
510
|
-
]
|
|
511
|
-
"optionalCategory": "Form Recognition"
|
|
711
|
+
]
|
|
512
712
|
},
|
|
513
713
|
{
|
|
514
714
|
"cardId": "identify-objects",
|
|
515
715
|
"category": "Visual perception",
|
|
516
|
-
"title": "Identify
|
|
517
|
-
"description": "Use AI to create custom image recognition models for specific needs and applications",
|
|
716
|
+
"title": "Identify objects",
|
|
717
|
+
"description": "Use AI to create custom image recognition models for specific needs and applications.",
|
|
518
718
|
"typicalScenarios": [
|
|
519
|
-
"Accessibility -
|
|
719
|
+
"Accessibility - Assist visually impaired users with descriptions of environments.",
|
|
520
720
|
"Retail - Automatically identify and catalog products in images for streamlined inventory management."
|
|
521
721
|
],
|
|
522
722
|
"azureServices": [
|
|
523
|
-
"Azure AI Foundry",
|
|
524
723
|
"Azure AI Vision",
|
|
525
|
-
"Azure
|
|
526
|
-
"Azure
|
|
527
|
-
]
|
|
528
|
-
"optionalCategory": "Image recognition"
|
|
724
|
+
"Azure AI Foundry",
|
|
725
|
+
"Azure Machine Learning"
|
|
726
|
+
]
|
|
529
727
|
},
|
|
530
728
|
{
|
|
531
729
|
"cardId": "convert-images-to-text",
|
|
532
730
|
"category": "Visual perception",
|
|
533
|
-
"title": "Convert
|
|
731
|
+
"title": "Convert images to text",
|
|
534
732
|
"description": "Use AI to transform various types of documents into editable and searchable data.",
|
|
535
733
|
"typicalScenarios": [
|
|
536
734
|
"Administration - Convert printed documents into digital text for easy search and retrieval.",
|
|
@@ -538,26 +736,24 @@
|
|
|
538
736
|
],
|
|
539
737
|
"azureServices": [
|
|
540
738
|
"Azure AI Vision",
|
|
541
|
-
"Power Platform
|
|
739
|
+
"Power Platform: AI Builder",
|
|
542
740
|
"Bing Search API"
|
|
543
|
-
]
|
|
544
|
-
"optionalCategory": "Image to Text"
|
|
741
|
+
]
|
|
545
742
|
},
|
|
546
743
|
{
|
|
547
744
|
"cardId": "identify-faces",
|
|
548
745
|
"category": "Visual perception",
|
|
549
|
-
"title": "Identify
|
|
746
|
+
"title": "Identify faces",
|
|
550
747
|
"description": "Use AI to identify or verify a person's identity by comparing and analyzing patterns based on facial contours.",
|
|
551
748
|
"typicalScenarios": [
|
|
552
749
|
"Security Systems - Enhance security by enabling systems to identify authorized individuals for access control.",
|
|
553
|
-
"Social Media -
|
|
750
|
+
"Social Media - Enables automatic tagging of individuals in social media platforms."
|
|
554
751
|
],
|
|
555
752
|
"azureServices": [
|
|
556
|
-
"Azure AI Face
|
|
753
|
+
"Azure AI Face Service",
|
|
557
754
|
"Azure AI Foundry",
|
|
558
755
|
"Azure AI Vision"
|
|
559
|
-
]
|
|
560
|
-
"optionalCategory": "Facial Recognition"
|
|
756
|
+
]
|
|
561
757
|
},
|
|
562
758
|
{
|
|
563
759
|
"cardId": "understand-environments",
|
|
@@ -573,13 +769,12 @@
|
|
|
573
769
|
"Azure Digital Twins",
|
|
574
770
|
"Azure AI Vision",
|
|
575
771
|
"Azure AI Foundry"
|
|
576
|
-
]
|
|
577
|
-
"optionalCategory": "Spatial Analysis"
|
|
772
|
+
]
|
|
578
773
|
},
|
|
579
774
|
{
|
|
580
|
-
"cardId": "
|
|
775
|
+
"cardId": "analyze-images",
|
|
581
776
|
"category": "Visual perception",
|
|
582
|
-
"title": "
|
|
777
|
+
"title": "Analyze images",
|
|
583
778
|
"description": "Utilize AI to understand, interpret, and derive insights from visual data.",
|
|
584
779
|
"typicalScenarios": [
|
|
585
780
|
"Agriculture - Assist farmers in crop monitoring by analyzing drone-captured images of farmland for signs of disease or distress.",
|
|
@@ -591,13 +786,12 @@
|
|
|
591
786
|
"Azure Machine Learning",
|
|
592
787
|
"Bing Search API",
|
|
593
788
|
"Azure AI Content Understanding"
|
|
594
|
-
]
|
|
595
|
-
"optionalCategory": "Image Analysis"
|
|
789
|
+
]
|
|
596
790
|
},
|
|
597
791
|
{
|
|
598
792
|
"cardId": "categorize-images",
|
|
599
793
|
"category": "Visual perception",
|
|
600
|
-
"title": "Categorize
|
|
794
|
+
"title": "Categorize images",
|
|
601
795
|
"description": "Use AI to tag images based on their content, simplifying management and retrieval of visual data.",
|
|
602
796
|
"typicalScenarios": [
|
|
603
797
|
"Digital Asset Management - Simplify management of large image libraries by tagging images for easy retrieval.",
|
|
@@ -608,44 +802,40 @@
|
|
|
608
802
|
"Azure AI Foundry",
|
|
609
803
|
"Azure Machine Learning",
|
|
610
804
|
"Azure AI Content Understanding"
|
|
611
|
-
]
|
|
612
|
-
"optionalCategory": "Image Tagging"
|
|
805
|
+
]
|
|
613
806
|
},
|
|
614
807
|
{
|
|
615
808
|
"cardId": "create-image-captions",
|
|
616
809
|
"category": "Visual perception",
|
|
617
|
-
"title": "Create
|
|
810
|
+
"title": "Create image captions",
|
|
618
811
|
"description": "Use AI to generate textual descriptions of images, enhancing understanding without visual perception.",
|
|
619
812
|
"typicalScenarios": [
|
|
620
813
|
"Accessibility - Improve accessibility for visually impaired users with textual descriptions of images on websites or applications.",
|
|
621
814
|
"Education - Assist learning by providing detailed captions for educational images or diagrams."
|
|
622
815
|
],
|
|
623
816
|
"azureServices": [
|
|
624
|
-
"Azure AI Vision"
|
|
625
|
-
|
|
626
|
-
],
|
|
627
|
-
"optionalCategory": "Image Captioning"
|
|
817
|
+
"Azure AI Vision"
|
|
818
|
+
]
|
|
628
819
|
},
|
|
629
820
|
{
|
|
630
821
|
"cardId": "generate-image-metadata",
|
|
631
822
|
"category": "Visual perception",
|
|
632
|
-
"title": "Generate
|
|
823
|
+
"title": "Generate image metadata",
|
|
633
824
|
"description": "Use AI to create structured data about images, enhancing searchability and management.",
|
|
634
825
|
"typicalScenarios": [
|
|
635
826
|
"Digital Archives - Facilitate search and retrieval in large image archives by generating detailed metadata for each image.",
|
|
636
|
-
"Photography - Assist photographers in managing their portfolios by creating metadata for each photograph, including details like location, subject, camera settings
|
|
827
|
+
"Photography - Assist photographers in managing their portfolios by creating metadata for each photograph, including details like location, subject, and camera settings."
|
|
637
828
|
],
|
|
638
829
|
"azureServices": [
|
|
639
830
|
"Azure AI Vision",
|
|
640
831
|
"Azure AI Foundry",
|
|
641
832
|
"Azure Machine Learning"
|
|
642
|
-
]
|
|
643
|
-
"optionalCategory": "Image Metadata"
|
|
833
|
+
]
|
|
644
834
|
},
|
|
645
835
|
{
|
|
646
836
|
"cardId": "analyze-emotion-and-sentiment",
|
|
647
837
|
"category": "Text processing",
|
|
648
|
-
"title": "Analyze
|
|
838
|
+
"title": "Analyze emotion and sentiment",
|
|
649
839
|
"description": "Use AI to detect and analyze user sentiment from text, helping to improve services and customer interactions.",
|
|
650
840
|
"typicalScenarios": [
|
|
651
841
|
"Customer Support - Analyze customer feedback or complaints with AI, identifying negative sentiments to prioritize actions and improve satisfaction.",
|
|
@@ -657,16 +847,15 @@
|
|
|
657
847
|
"Microsoft Copilot Studio",
|
|
658
848
|
"Microsoft 365 Agents SDK",
|
|
659
849
|
"Azure Machine Learning"
|
|
660
|
-
]
|
|
661
|
-
"optionalCategory": "Emotion and Sentiment Analysis"
|
|
850
|
+
]
|
|
662
851
|
},
|
|
663
852
|
{
|
|
664
853
|
"cardId": "generate-contextual-text",
|
|
665
854
|
"category": "Text processing",
|
|
666
|
-
"title": "Generate
|
|
855
|
+
"title": "Generate contextual text",
|
|
667
856
|
"description": "Use AI to generate contextually relevant and personalized text, enhancing user experience and productivity.",
|
|
668
857
|
"typicalScenarios": [
|
|
669
|
-
"Content Creation - Create drafts for articles, blogs or social media posts with AI
|
|
858
|
+
"Content Creation - Create drafts for articles, blogs, or social media posts with AI to aid creation and curation.",
|
|
670
859
|
"Email Composition - Suggest email responses or draft emails based on past interactions with AI, saving time and effort."
|
|
671
860
|
],
|
|
672
861
|
"azureServices": [
|
|
@@ -675,13 +864,12 @@
|
|
|
675
864
|
"Microsoft Copilot Studio",
|
|
676
865
|
"Microsoft 365 Agents SDK",
|
|
677
866
|
"Microsoft 365 Copilot"
|
|
678
|
-
]
|
|
679
|
-
"optionalCategory": "Text Generation"
|
|
867
|
+
]
|
|
680
868
|
},
|
|
681
869
|
{
|
|
682
870
|
"cardId": "summarize-text",
|
|
683
871
|
"category": "Text processing",
|
|
684
|
-
"title": "Summarize
|
|
872
|
+
"title": "Summarize text",
|
|
685
873
|
"description": "Use AI to extract key points from large text data, aiding in quick understanding and efficient information retrieval.",
|
|
686
874
|
"typicalScenarios": [
|
|
687
875
|
"Business Reports - Summarize lengthy business reports into key insights with AI, enabling swift decision-making.",
|
|
@@ -693,8 +881,7 @@
|
|
|
693
881
|
"Microsoft Copilot Studio",
|
|
694
882
|
"Microsoft 365 Agents SDK",
|
|
695
883
|
"Microsoft Teams Premium"
|
|
696
|
-
]
|
|
697
|
-
"optionalCategory": "Text Generation"
|
|
884
|
+
]
|
|
698
885
|
},
|
|
699
886
|
{
|
|
700
887
|
"cardId": "translate-text",
|
|
@@ -710,13 +897,12 @@
|
|
|
710
897
|
"Azure AI Foundry",
|
|
711
898
|
"Microsoft Copilot Studio",
|
|
712
899
|
"Microsoft Teams Premium"
|
|
713
|
-
]
|
|
714
|
-
"optionalCategory": "Text Generation"
|
|
900
|
+
]
|
|
715
901
|
},
|
|
716
902
|
{
|
|
717
903
|
"cardId": "engage-in-natural-conversations",
|
|
718
904
|
"category": "Communication",
|
|
719
|
-
"title": "Engage in
|
|
905
|
+
"title": "Engage in natural conversations",
|
|
720
906
|
"description": "Use AI to facilitate natural and engaging conversations, enhancing user experience and interaction.",
|
|
721
907
|
"typicalScenarios": [
|
|
722
908
|
"Customer Support - Understand and respond to user queries in natural language through an AI-powered chatbot.",
|
|
@@ -724,266 +910,92 @@
|
|
|
724
910
|
],
|
|
725
911
|
"azureServices": [
|
|
726
912
|
"Azure AI Bot Service",
|
|
727
|
-
"Azure AI
|
|
913
|
+
"Azure AI Language",
|
|
728
914
|
"Azure AI Translator",
|
|
729
915
|
"Microsoft Copilot Studio",
|
|
730
916
|
"Microsoft 365 Agents SDK"
|
|
731
|
-
]
|
|
732
|
-
"optionalCategory": "Conversational AI"
|
|
917
|
+
]
|
|
733
918
|
},
|
|
734
919
|
{
|
|
735
920
|
"cardId": "convert-text-into-speech",
|
|
736
921
|
"category": "Communication",
|
|
737
|
-
"title": "Convert
|
|
922
|
+
"title": "Convert text into speech",
|
|
738
923
|
"description": "Use AI to transform text into lifelike speech, enhancing accessibility and user experience.",
|
|
739
924
|
"typicalScenarios": [
|
|
740
925
|
"Accessibility - Read out articles, books, or documents with AI for users with visual impairments.",
|
|
741
|
-
"Voice Assistants - Provide voice-based responses or instructions in applications or devices using AI."
|
|
742
|
-
],
|
|
743
|
-
"azureServices": [
|
|
744
|
-
"Azure AI Language",
|
|
745
|
-
"Azure AI Foundry"
|
|
746
|
-
],
|
|
747
|
-
"optionalCategory": "Text to speech"
|
|
748
|
-
},
|
|
749
|
-
{
|
|
750
|
-
"cardId": "automate-answers",
|
|
751
|
-
"category": "Communication",
|
|
752
|
-
"title": "Automate Answers",
|
|
753
|
-
"description": "Quickly address inquiries with instant, precise responses.",
|
|
754
|
-
"typicalScenarios": [
|
|
755
|
-
"Retail - Handle customer queries about products via chatbot.",
|
|
756
|
-
"Travel - Answer queries from airport guests on services and navigation."
|
|
757
|
-
],
|
|
758
|
-
"azureServices": [
|
|
759
|
-
"Azure AI Search",
|
|
760
|
-
"Azure AI Foundry",
|
|
761
|
-
"Azure AI Bot Service",
|
|
762
|
-
"Microsoft Copilot Studio",
|
|
763
|
-
"Microsoft 365 Agents SDK"
|
|
764
|
-
],
|
|
765
|
-
"optionalCategory": "Customer Service"
|
|
766
|
-
},
|
|
767
|
-
{
|
|
768
|
-
"cardId": "translate-speech-instantly",
|
|
769
|
-
"category": "Communication",
|
|
770
|
-
"title": "Translate Speech Instantly",
|
|
771
|
-
"description": "Enable instant translation of spoken language for seamless communication.",
|
|
772
|
-
"typicalScenarios": [
|
|
773
|
-
"Customer Support - Provide real-time translation in multilingual customer interactions.",
|
|
774
|
-
"Travel & Tourism - Facilitate communication for travelers by translating local languages instantly."
|
|
775
|
-
],
|
|
776
|
-
"azureServices": [
|
|
777
|
-
"Azure AI Foundry",
|
|
778
|
-
"Azure AI Language",
|
|
779
|
-
"Microsoft 365 Copilot"
|
|
780
|
-
],
|
|
781
|
-
"optionalCategory": "Communication"
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
"cardId": "communicate-via-avatar",
|
|
785
|
-
"category": "Communication",
|
|
786
|
-
"title": "Communicate via avatar",
|
|
787
|
-
"description": "Create engaging experiences with audio and visual avatars for immersive gaming and personal assistants.",
|
|
788
|
-
"typicalScenarios": [
|
|
789
|
-
"Gaming industry - Enhance user immersion with unique voiced characters.",
|
|
790
|
-
"Virtual assistants - Improve user engagement with lifelike, expressive voices."
|
|
791
|
-
],
|
|
792
|
-
"azureServices": [
|
|
793
|
-
"Azure AI Foundry"
|
|
794
|
-
],
|
|
795
|
-
"optionalCategory": "User engagement"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"cardId": "understand-user-intent",
|
|
799
|
-
"category": "Communication",
|
|
800
|
-
"title": "Understand User Intent",
|
|
801
|
-
"description": "Interpret human language to identify user's specific intentions and context.",
|
|
802
|
-
"typicalScenarios": [
|
|
803
|
-
"Customer Service - Understand customer requests and provide accurate support.",
|
|
804
|
-
"Chatbots - Enable chatbots to understand queries and provide relevant responses."
|
|
805
|
-
],
|
|
806
|
-
"azureServices": [
|
|
807
|
-
"Azure AI Language",
|
|
808
|
-
"Azure AI Bot Service",
|
|
809
|
-
"Azure AI Foundry",
|
|
810
|
-
"Microsoft 365 Agents SDK",
|
|
811
|
-
"Microsoft Copilot Studio"
|
|
812
|
-
],
|
|
813
|
-
"optionalCategory": "Customer Interaction"
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"cardId": "convert-speech-to-text",
|
|
817
|
-
"category": "Speech recognition",
|
|
818
|
-
"title": "Convert Speech to Text",
|
|
819
|
-
"description": "Transcribe spoken language into text with AI and enable further text-based use.",
|
|
820
|
-
"typicalScenarios": [
|
|
821
|
-
"Transcription Services - Automate transcription of interviews, meetings or lectures.",
|
|
822
|
-
"Voice Assistants - Convert spoken commands into text for processing."
|
|
823
|
-
],
|
|
824
|
-
"azureServices": [
|
|
825
|
-
"Azure AI Foundry"
|
|
826
|
-
],
|
|
827
|
-
"optionalCategory": "Accessibility"
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
"cardId": "identify-voices",
|
|
831
|
-
"category": "Speech recognition",
|
|
832
|
-
"title": "Identify Voices",
|
|
833
|
-
"description": "Use unique voice characteristics to enhance security and personalization.",
|
|
834
|
-
"typicalScenarios": [
|
|
835
|
-
"Customer Service - Identify callers for personalized interactions and swift verification.",
|
|
836
|
-
"Smart Home Devices - Customize user experience by recognizing different household members' voices."
|
|
837
|
-
],
|
|
838
|
-
"azureServices": [
|
|
839
|
-
"Azure AI Foundry"
|
|
840
|
-
],
|
|
841
|
-
"optionalCategory": "Security & Personalization"
|
|
842
|
-
},
|
|
843
|
-
{
|
|
844
|
-
"cardId": "activate-with-keyword",
|
|
845
|
-
"category": "Speech recognition",
|
|
846
|
-
"title": "Activate with Keyword",
|
|
847
|
-
"description": "Personalize activation of AI assistants or IoT devices using specific keywords.",
|
|
848
|
-
"typicalScenarios": [
|
|
849
|
-
"AI Assistants - Allow users to activate assistants with preferred catchphrases.",
|
|
850
|
-
"Automotive Industry - Improve driving experience with custom voice command activation."
|
|
851
|
-
],
|
|
852
|
-
"azureServices": [
|
|
853
|
-
"Azure IoT Edge",
|
|
854
|
-
"Azure AI Foundry",
|
|
855
|
-
"Azure AI Language"
|
|
856
|
-
],
|
|
857
|
-
"optionalCategory": "User Experience"
|
|
858
|
-
},
|
|
859
|
-
{
|
|
860
|
-
"cardId": "enable-voice-commands",
|
|
861
|
-
"category": "Speech recognition",
|
|
862
|
-
"title": "Enable Voice Commands",
|
|
863
|
-
"description": "Interact with devices or applications hands-free for convenience and accessibility.",
|
|
864
|
-
"typicalScenarios": [
|
|
865
|
-
"Healthcare Industry - Assist medical professionals in accessing information or controlling equipment hands-free.",
|
|
866
|
-
"Smart Home Appliances - Control home appliances like lights or thermostats through voice commands."
|
|
867
|
-
],
|
|
868
|
-
"azureServices": [
|
|
869
|
-
"Azure AI Language",
|
|
870
|
-
"Azure AI Foundry"
|
|
871
|
-
],
|
|
872
|
-
"optionalCategory": "Accessibility & Convenience"
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"cardId": "understand-special-context",
|
|
876
|
-
"category": "Speech recognition",
|
|
877
|
-
"title": "Understand special context",
|
|
878
|
-
"description": "Tailor speech synthesis and recognition for specific contexts, accents, or industries.",
|
|
879
|
-
"typicalScenarios": [
|
|
880
|
-
"Telecommunications - Train voice assistants to understand industry-specific jargon and accents.",
|
|
881
|
-
"Healthcare Industry - Enable medical applications to understand and generate medical terminologies."
|
|
882
|
-
],
|
|
883
|
-
"azureServices": [
|
|
884
|
-
"Azure AI Foundry",
|
|
885
|
-
"Azure AI Language"
|
|
886
|
-
],
|
|
887
|
-
"optionalCategory": "Communication & Efficiency"
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
"cardId": "mimic-specific-voices",
|
|
891
|
-
"category": "Speech recognition",
|
|
892
|
-
"title": "Mimic Specific Voices",
|
|
893
|
-
"description": "Create lifelike, synthesized speech that mirrors individual vocal characteristics.",
|
|
894
|
-
"typicalScenarios": [
|
|
895
|
-
"Entertainment Industry - Create realistic voiceovers for animated characters or digital influencers.",
|
|
896
|
-
"Accessibility - Develop assistive technologies that speak in familiar voices for users with special needs."
|
|
897
|
-
],
|
|
898
|
-
"azureServices": [
|
|
899
|
-
"Azure AI Foundry",
|
|
900
|
-
"Azure AI Language"
|
|
901
|
-
],
|
|
902
|
-
"optionalCategory": "Personalization & Engagement"
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
"cardId": "interpret-touch-for-control",
|
|
906
|
-
"category": "Environmental awareness",
|
|
907
|
-
"title": "Interpret Touch for Control",
|
|
908
|
-
"description": "Enable intuitive control through touch-based interactions.",
|
|
909
|
-
"typicalScenarios": [
|
|
910
|
-
"Tech sector - Navigating smartphone or tablet interfaces using touch gestures.",
|
|
911
|
-
"Design sector - Drawing or annotating on touch-enabled devices for creative work."
|
|
912
|
-
],
|
|
913
|
-
"azureServices": [
|
|
914
|
-
"Microsoft Surface",
|
|
915
|
-
"Azure AI Custom Vision"
|
|
926
|
+
"Voice Assistants - Provide voice-based responses or instructions in applications or devices using AI."
|
|
916
927
|
],
|
|
917
|
-
"
|
|
928
|
+
"azureServices": [
|
|
929
|
+
"Azure AI Language",
|
|
930
|
+
"Azure AI Foundry"
|
|
931
|
+
]
|
|
918
932
|
},
|
|
919
933
|
{
|
|
920
|
-
"cardId": "
|
|
921
|
-
"category": "
|
|
922
|
-
"title": "
|
|
923
|
-
"description": "
|
|
934
|
+
"cardId": "automate-answers",
|
|
935
|
+
"category": "Communication",
|
|
936
|
+
"title": "Automate answers",
|
|
937
|
+
"description": "Quickly address inquiries with instant, precise responses.",
|
|
924
938
|
"typicalScenarios": [
|
|
925
|
-
"Retail -
|
|
926
|
-
"
|
|
939
|
+
"Retail - Handle customer queries about products via chatbot.",
|
|
940
|
+
"Travel - Answer queries from airport guests on services and navigation."
|
|
927
941
|
],
|
|
928
942
|
"azureServices": [
|
|
929
|
-
"Azure
|
|
943
|
+
"Azure AI Search",
|
|
930
944
|
"Azure AI Foundry",
|
|
931
|
-
"
|
|
932
|
-
|
|
933
|
-
|
|
945
|
+
"Azure AI Bot Service",
|
|
946
|
+
"Microsoft Copilot Studio",
|
|
947
|
+
"Microsoft 365 Agents SDK"
|
|
948
|
+
]
|
|
934
949
|
},
|
|
935
950
|
{
|
|
936
|
-
"cardId": "
|
|
937
|
-
"category": "
|
|
938
|
-
"title": "
|
|
939
|
-
"description": "
|
|
951
|
+
"cardId": "translate-speech-instantly",
|
|
952
|
+
"category": "Communication",
|
|
953
|
+
"title": "Translate speech instantly",
|
|
954
|
+
"description": "Enable instant translation of spoken language for seamless communication.",
|
|
940
955
|
"typicalScenarios": [
|
|
941
|
-
"
|
|
942
|
-
"
|
|
956
|
+
"Customer Support - Provide real-time translation in multilingual customer interactions.",
|
|
957
|
+
"Travel & Tourism - Facilitate communication for travelers by translating local languages instantly."
|
|
943
958
|
],
|
|
944
959
|
"azureServices": [
|
|
945
|
-
"Azure Machine Learning",
|
|
946
960
|
"Azure AI Foundry",
|
|
947
|
-
"
|
|
948
|
-
|
|
949
|
-
|
|
961
|
+
"Azure AI Language",
|
|
962
|
+
"Microsoft 365 Copilot"
|
|
963
|
+
]
|
|
950
964
|
},
|
|
951
965
|
{
|
|
952
|
-
"cardId": "
|
|
953
|
-
"category": "
|
|
954
|
-
"title": "
|
|
955
|
-
"description": "
|
|
966
|
+
"cardId": "communicate-via-avatar",
|
|
967
|
+
"category": "Communication",
|
|
968
|
+
"title": "Communicate via avatar",
|
|
969
|
+
"description": "Create engaging experiences with audio and visual avatars for immersive gaming and personal assistants.",
|
|
956
970
|
"typicalScenarios": [
|
|
957
|
-
"
|
|
958
|
-
"
|
|
971
|
+
"Gaming Industry - Enhance user immersion with unique voiced characters.",
|
|
972
|
+
"Virtual Assistants - Improve user engagement with lifelike, expressive voices."
|
|
959
973
|
],
|
|
960
974
|
"azureServices": [
|
|
961
|
-
"Azure
|
|
962
|
-
|
|
963
|
-
"Azure Spatial Anchors"
|
|
964
|
-
],
|
|
965
|
-
"optionalCategory": "Object and Environment Sensing"
|
|
975
|
+
"Azure AI Foundry"
|
|
976
|
+
]
|
|
966
977
|
},
|
|
967
978
|
{
|
|
968
|
-
"cardId": "
|
|
969
|
-
"category": "
|
|
970
|
-
"title": "
|
|
971
|
-
"description": "
|
|
979
|
+
"cardId": "understand-user-intent",
|
|
980
|
+
"category": "Communication",
|
|
981
|
+
"title": "Understand user intent",
|
|
982
|
+
"description": "Interpret human language to identify users' specific intentions and context.",
|
|
972
983
|
"typicalScenarios": [
|
|
973
|
-
"
|
|
974
|
-
"
|
|
984
|
+
"Customer Service - Understand customer requests and provide accurate support.",
|
|
985
|
+
"Chatbots - Enable chatbots to understand queries and provide relevant responses."
|
|
975
986
|
],
|
|
976
987
|
"azureServices": [
|
|
977
|
-
"Azure
|
|
978
|
-
"Azure
|
|
979
|
-
"Azure AI Foundry"
|
|
980
|
-
|
|
981
|
-
|
|
988
|
+
"Azure AI Language",
|
|
989
|
+
"Azure AI Bot Service",
|
|
990
|
+
"Azure AI Foundry",
|
|
991
|
+
"Microsoft 365 Agents SDK",
|
|
992
|
+
"Microsoft Copilot Studio"
|
|
993
|
+
]
|
|
982
994
|
},
|
|
983
995
|
{
|
|
984
996
|
"cardId": "generate-images-from-text",
|
|
985
997
|
"category": "Content creation",
|
|
986
|
-
"title": "Generate
|
|
998
|
+
"title": "Generate images from text",
|
|
987
999
|
"description": "Create unique images from textual descriptions utilizing AI.",
|
|
988
1000
|
"typicalScenarios": [
|
|
989
1001
|
"Entertainment & Media - Create unique characters and scenes for movies or games from text descriptions.",
|
|
@@ -992,15 +1004,14 @@
|
|
|
992
1004
|
"azureServices": [
|
|
993
1005
|
"Azure AI Foundry",
|
|
994
1006
|
"Microsoft Designer",
|
|
995
|
-
"Microsoft
|
|
1007
|
+
"Microsoft Copilot",
|
|
996
1008
|
"Azure AI Content Understanding"
|
|
997
|
-
]
|
|
998
|
-
"optionalCategory": "Text-to-Image Conversion"
|
|
1009
|
+
]
|
|
999
1010
|
},
|
|
1000
1011
|
{
|
|
1001
1012
|
"cardId": "generate-or-enhance-text",
|
|
1002
1013
|
"category": "Content creation",
|
|
1003
|
-
"title": "Generate or
|
|
1014
|
+
"title": "Generate or enhance text",
|
|
1004
1015
|
"description": "Implement advanced natural language understanding for more sophisticated, human-like interactions.",
|
|
1005
1016
|
"typicalScenarios": [
|
|
1006
1017
|
"Content Creation - Generate high-quality text for blogs, articles, or social media posts, enhancing productivity.",
|
|
@@ -1009,14 +1020,13 @@
|
|
|
1009
1020
|
"azureServices": [
|
|
1010
1021
|
"Azure AI Foundry",
|
|
1011
1022
|
"Azure AI Language",
|
|
1012
|
-
"Microsoft
|
|
1013
|
-
]
|
|
1014
|
-
"optionalCategory": "Text Generation & Enhancement"
|
|
1023
|
+
"Microsoft Copilot"
|
|
1024
|
+
]
|
|
1015
1025
|
},
|
|
1016
1026
|
{
|
|
1017
1027
|
"cardId": "generate-synthetic-data",
|
|
1018
1028
|
"category": "Content creation",
|
|
1019
|
-
"title": "Generate
|
|
1029
|
+
"title": "Generate synthetic data",
|
|
1020
1030
|
"description": "Create synthetic data that mimics real data for robust model training without compromising privacy.",
|
|
1021
1031
|
"typicalScenarios": [
|
|
1022
1032
|
"Finance - Simulate financial scenarios to test models, enhancing risk management without revealing sensitive data.",
|
|
@@ -1026,8 +1036,7 @@
|
|
|
1026
1036
|
"Azure AI Foundry",
|
|
1027
1037
|
"Azure Machine Learning",
|
|
1028
1038
|
"Microsoft Fabric"
|
|
1029
|
-
]
|
|
1030
|
-
"optionalCategory": "Synthetic Data Generation"
|
|
1039
|
+
]
|
|
1031
1040
|
},
|
|
1032
1041
|
{
|
|
1033
1042
|
"cardId": "personalize-marketing",
|
|
@@ -1042,208 +1051,184 @@
|
|
|
1042
1051
|
"Azure AI Search",
|
|
1043
1052
|
"Azure Machine Learning",
|
|
1044
1053
|
"Dynamics 365 Customer Insights"
|
|
1045
|
-
]
|
|
1046
|
-
"optionalCategory": "Marketing"
|
|
1054
|
+
]
|
|
1047
1055
|
},
|
|
1048
1056
|
{
|
|
1049
1057
|
"cardId": "create-dynamic-web-pages",
|
|
1050
1058
|
"category": "Content creation",
|
|
1051
|
-
"title": "Create
|
|
1059
|
+
"title": "Create dynamic web pages",
|
|
1052
1060
|
"description": "Use AI to generate text, forms, and layouts for web pages, simplifying web development.",
|
|
1053
1061
|
"typicalScenarios": [
|
|
1054
1062
|
"Form Creation - Use AI to automatically generate detailed forms for event registrations.",
|
|
1055
1063
|
"Dynamic Layouts - Create dynamic webpage layouts for a product catalog using AI."
|
|
1056
1064
|
],
|
|
1057
1065
|
"azureServices": [
|
|
1058
|
-
"Power Platform
|
|
1066
|
+
"Power Platform: Power Pages",
|
|
1059
1067
|
"Azure AI Language",
|
|
1060
1068
|
"GitHub Copilot"
|
|
1061
|
-
]
|
|
1062
|
-
"optionalCategory": "Web Development"
|
|
1069
|
+
]
|
|
1063
1070
|
},
|
|
1064
1071
|
{
|
|
1065
|
-
"cardId": "
|
|
1066
|
-
"category": "
|
|
1067
|
-
"title": "
|
|
1068
|
-
"description": "
|
|
1072
|
+
"cardId": "convert-speech-to-text",
|
|
1073
|
+
"category": "Speech recognition",
|
|
1074
|
+
"title": "Convert speech to text",
|
|
1075
|
+
"description": "Transcribe spoken language into text with AI and enable further text-based use.",
|
|
1069
1076
|
"typicalScenarios": [
|
|
1070
|
-
"
|
|
1071
|
-
"
|
|
1077
|
+
"Transcription Services - Automate transcription of interviews, meetings, or lectures.",
|
|
1078
|
+
"Voice Assistants - Convert spoken commands into text for processing."
|
|
1072
1079
|
],
|
|
1073
1080
|
"azureServices": [
|
|
1074
|
-
"Azure
|
|
1075
|
-
|
|
1076
|
-
"Microsoft Fabric",
|
|
1077
|
-
"Microsoft 365 Agents SDK"
|
|
1078
|
-
],
|
|
1079
|
-
"optionalCategory": "Research & Development"
|
|
1081
|
+
"Azure AI Foundry"
|
|
1082
|
+
]
|
|
1080
1083
|
},
|
|
1081
1084
|
{
|
|
1082
|
-
"cardId": "
|
|
1083
|
-
"category": "
|
|
1084
|
-
"title": "
|
|
1085
|
-
"description": "Use
|
|
1085
|
+
"cardId": "identify-voices",
|
|
1086
|
+
"category": "Speech recognition",
|
|
1087
|
+
"title": "Identify voices",
|
|
1088
|
+
"description": "Use unique voice characteristics to enhance security and personalization.",
|
|
1086
1089
|
"typicalScenarios": [
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1090
|
+
"Customer Service - Identify callers for personalized interactions and swift verification.",
|
|
1091
|
+
"Smart Home Devices - Customize user experience by recognizing different household members' voices."
|
|
1089
1092
|
],
|
|
1090
1093
|
"azureServices": [
|
|
1091
|
-
"Azure
|
|
1092
|
-
|
|
1093
|
-
"Dynamics 365 Finance & Operations",
|
|
1094
|
-
"Microsoft 365 Agents SDK"
|
|
1095
|
-
],
|
|
1096
|
-
"optionalCategory": "Pricing Optimization"
|
|
1094
|
+
"Azure AI Foundry"
|
|
1095
|
+
]
|
|
1097
1096
|
},
|
|
1098
1097
|
{
|
|
1099
|
-
"cardId": "
|
|
1100
|
-
"category": "
|
|
1101
|
-
"title": "
|
|
1102
|
-
"description": "
|
|
1098
|
+
"cardId": "activate-with-keyword",
|
|
1099
|
+
"category": "Speech recognition",
|
|
1100
|
+
"title": "Activate with keyword",
|
|
1101
|
+
"description": "Personalize activation of AI assistants or IoT devices using specific keywords.",
|
|
1103
1102
|
"typicalScenarios": [
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1103
|
+
"AI Assistants - Allow users to activate assistants with preferred catchphrases.",
|
|
1104
|
+
"Automotive Industry - Improve driving experience with custom voice command activation."
|
|
1106
1105
|
],
|
|
1107
1106
|
"azureServices": [
|
|
1108
|
-
"Azure
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
1111
|
-
|
|
1112
|
-
],
|
|
1113
|
-
"optionalCategory": "Logistics & Supply Chain"
|
|
1107
|
+
"Azure IoT Edge",
|
|
1108
|
+
"Azure AI Foundry",
|
|
1109
|
+
"Azure AI Language"
|
|
1110
|
+
]
|
|
1114
1111
|
},
|
|
1115
1112
|
{
|
|
1116
|
-
"cardId": "
|
|
1117
|
-
"category": "
|
|
1118
|
-
"title": "
|
|
1119
|
-
"description": "
|
|
1113
|
+
"cardId": "enable-voice-commands",
|
|
1114
|
+
"category": "Speech recognition",
|
|
1115
|
+
"title": "Enable voice commands",
|
|
1116
|
+
"description": "Interact with devices or applications hands-free for convenience and accessibility.",
|
|
1120
1117
|
"typicalScenarios": [
|
|
1121
|
-
"
|
|
1122
|
-
"
|
|
1118
|
+
"Healthcare Industry - Assist medical professionals in accessing information or controlling equipment hands-free.",
|
|
1119
|
+
"Smart Home Appliances - Control home appliances like lights or thermostats through voice commands."
|
|
1123
1120
|
],
|
|
1124
1121
|
"azureServices": [
|
|
1125
|
-
"Azure
|
|
1126
|
-
"Azure AI Foundry"
|
|
1127
|
-
|
|
1128
|
-
"Azure IoT Operations",
|
|
1129
|
-
"Dynamics 365 Supply Chain Management"
|
|
1130
|
-
],
|
|
1131
|
-
"optionalCategory": "Production & Agriculture"
|
|
1122
|
+
"Azure AI Language",
|
|
1123
|
+
"Azure AI Foundry"
|
|
1124
|
+
]
|
|
1132
1125
|
},
|
|
1133
1126
|
{
|
|
1134
|
-
"cardId": "
|
|
1135
|
-
"category": "
|
|
1136
|
-
"title": "
|
|
1137
|
-
"description": "
|
|
1127
|
+
"cardId": "understand-special-context",
|
|
1128
|
+
"category": "Speech recognition",
|
|
1129
|
+
"title": "Understand special context",
|
|
1130
|
+
"description": "Tailor speech synthesis and recognition for specific contexts, accents, or industries.",
|
|
1138
1131
|
"typicalScenarios": [
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1132
|
+
"Telecommunications - Train voice assistants to understand industry-specific jargon and accents.",
|
|
1133
|
+
"Healthcare Industry - Enable medical applications to understand and generate medical terminologies."
|
|
1141
1134
|
],
|
|
1142
1135
|
"azureServices": [
|
|
1143
|
-
"Azure
|
|
1144
|
-
"Azure
|
|
1145
|
-
|
|
1146
|
-
"Azure AI Vision",
|
|
1147
|
-
"Microsoft 365 Agents SDK"
|
|
1148
|
-
],
|
|
1149
|
-
"optionalCategory": "Quality Control & Maintenance"
|
|
1136
|
+
"Azure AI Foundry",
|
|
1137
|
+
"Azure AI Language"
|
|
1138
|
+
]
|
|
1150
1139
|
},
|
|
1151
1140
|
{
|
|
1152
|
-
"cardId": "
|
|
1153
|
-
"category": "
|
|
1154
|
-
"title": "
|
|
1155
|
-
"description": "
|
|
1141
|
+
"cardId": "mimic-specific-voices",
|
|
1142
|
+
"category": "Speech recognition",
|
|
1143
|
+
"title": "Mimic specific voices",
|
|
1144
|
+
"description": "Create lifelike, synthesized speech that mirrors individual vocal characteristics.",
|
|
1156
1145
|
"typicalScenarios": [
|
|
1157
|
-
"
|
|
1158
|
-
"
|
|
1146
|
+
"Entertainment Industry - Create realistic voiceovers for animated characters or digital influencers.",
|
|
1147
|
+
"Accessibility - Develop assistive technologies that speak in familiar voices for users with special needs."
|
|
1159
1148
|
],
|
|
1160
1149
|
"azureServices": [
|
|
1161
|
-
"Azure
|
|
1162
|
-
"Azure
|
|
1163
|
-
|
|
1164
|
-
"Microsoft 365 Agents SDK"
|
|
1165
|
-
],
|
|
1166
|
-
"optionalCategory": "Infrastructure Management"
|
|
1150
|
+
"Azure AI Foundry",
|
|
1151
|
+
"Azure AI Language"
|
|
1152
|
+
]
|
|
1167
1153
|
},
|
|
1168
1154
|
{
|
|
1169
|
-
"cardId": "
|
|
1170
|
-
"category": "
|
|
1171
|
-
"title": "
|
|
1172
|
-
"description": "
|
|
1155
|
+
"cardId": "extract-information",
|
|
1156
|
+
"category": "Information Management",
|
|
1157
|
+
"title": "Extract information",
|
|
1158
|
+
"description": "Use AI for efficient and speedy extraction of vital data from large databases or unsorted data stores, enhancing research and productivity.",
|
|
1173
1159
|
"typicalScenarios": [
|
|
1174
|
-
"
|
|
1175
|
-
"
|
|
1160
|
+
"Legal and Tax - Use AI to quickly locate pertinent cases, laws, and regulations from extensive legal databases.",
|
|
1161
|
+
"Scientific Research - Implement AI to swiftly sift through scholarly articles and extract key findings."
|
|
1176
1162
|
],
|
|
1177
1163
|
"azureServices": [
|
|
1178
|
-
"
|
|
1179
|
-
"
|
|
1180
|
-
"Azure
|
|
1181
|
-
|
|
1182
|
-
|
|
1164
|
+
"Bing Search API",
|
|
1165
|
+
"Azure AI Search",
|
|
1166
|
+
"Azure AI Foundry",
|
|
1167
|
+
"Microsoft 365 Copilot",
|
|
1168
|
+
"Azure Machine Learning"
|
|
1169
|
+
]
|
|
1183
1170
|
},
|
|
1184
1171
|
{
|
|
1185
|
-
"cardId": "
|
|
1186
|
-
"category": "
|
|
1187
|
-
"title": "
|
|
1188
|
-
"description": "
|
|
1172
|
+
"cardId": "retrieve-information",
|
|
1173
|
+
"category": "Information Management",
|
|
1174
|
+
"title": "Retrieve information",
|
|
1175
|
+
"description": "Enhance productivity by using AI to find relevant information quickly.",
|
|
1189
1176
|
"typicalScenarios": [
|
|
1190
|
-
"
|
|
1191
|
-
"
|
|
1177
|
+
"E-Commerce - Analyze user behavior and preferences to deliver precise personalized product recommendations.",
|
|
1178
|
+
"Learning - Assist students by finding specific information to help learn and study a concept."
|
|
1192
1179
|
],
|
|
1193
1180
|
"azureServices": [
|
|
1181
|
+
"Bing Search API",
|
|
1182
|
+
"Azure AI Search",
|
|
1194
1183
|
"Azure Machine Learning",
|
|
1195
|
-
"
|
|
1196
|
-
"Microsoft 365 Copilot
|
|
1197
|
-
]
|
|
1198
|
-
"optionalCategory": "Sales optimization"
|
|
1184
|
+
"SharePoint Premium",
|
|
1185
|
+
"Microsoft 365 Copilot"
|
|
1186
|
+
]
|
|
1199
1187
|
},
|
|
1200
1188
|
{
|
|
1201
|
-
"cardId": "
|
|
1202
|
-
"category": "
|
|
1203
|
-
"title": "
|
|
1204
|
-
"description": "
|
|
1189
|
+
"cardId": "organize-data",
|
|
1190
|
+
"category": "Information Management",
|
|
1191
|
+
"title": "Organize data",
|
|
1192
|
+
"description": "Use AI to efficiently categorize and organize data, enhancing analysis and decision-making.",
|
|
1205
1193
|
"typicalScenarios": [
|
|
1206
|
-
"
|
|
1207
|
-
"
|
|
1194
|
+
"Healthcare - Categorize patient data by symptoms, diagnosis, and treatment to aid in research and patient care.",
|
|
1195
|
+
"Marketing - Identify and group customers to target marketing efforts effectively based on their interests, shopping habits, or annual spending."
|
|
1208
1196
|
],
|
|
1209
1197
|
"azureServices": [
|
|
1210
|
-
"
|
|
1211
|
-
"Azure AI
|
|
1212
|
-
"Azure
|
|
1213
|
-
|
|
1214
|
-
|
|
1198
|
+
"Azure AI Document Intelligence",
|
|
1199
|
+
"Azure AI Search",
|
|
1200
|
+
"Azure Machine Learning",
|
|
1201
|
+
"SharePoint Premium"
|
|
1202
|
+
]
|
|
1215
1203
|
},
|
|
1216
1204
|
{
|
|
1217
|
-
"cardId": "
|
|
1218
|
-
"category": "
|
|
1219
|
-
"title": "
|
|
1220
|
-
"description": "
|
|
1205
|
+
"cardId": "discover-patterns",
|
|
1206
|
+
"category": "Information Management",
|
|
1207
|
+
"title": "Discover patterns",
|
|
1208
|
+
"description": "Harness AI to identify patterns and relationships in data, leading to insightful analysis and decision-making.",
|
|
1221
1209
|
"typicalScenarios": [
|
|
1222
|
-
"
|
|
1223
|
-
"
|
|
1210
|
+
"Marketing - Employ AI to group customers based on purchasing behavior, demographics, and preferences for targeted marketing.",
|
|
1211
|
+
"Social Media - Use AI to identify and group trending sentiments or topics, aiding sentiment analysis and trend prediction."
|
|
1224
1212
|
],
|
|
1225
1213
|
"azureServices": [
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
]
|
|
1229
|
-
"optionalCategory": "App Development"
|
|
1214
|
+
"Azure Machine Learning",
|
|
1215
|
+
"Azure AI Foundry"
|
|
1216
|
+
]
|
|
1230
1217
|
},
|
|
1231
1218
|
{
|
|
1232
|
-
"cardId": "
|
|
1233
|
-
"category": "
|
|
1234
|
-
"title": "
|
|
1235
|
-
"description": "
|
|
1219
|
+
"cardId": "structure-raw-data",
|
|
1220
|
+
"category": "Information Management",
|
|
1221
|
+
"title": "Structure raw data",
|
|
1222
|
+
"description": "Leverage AI to transform raw, unstructured data into a structured format for easier analysis and insights extraction.",
|
|
1236
1223
|
"typicalScenarios": [
|
|
1237
|
-
"
|
|
1238
|
-
"
|
|
1224
|
+
"Text Mining - Convert unstructured text from social media, emails, or reviews into structured data for sentiment analysis or trend identification.",
|
|
1225
|
+
"Healthcare - Organize disparate, unstructured patient data into structured records, enhancing healthcare delivery and research."
|
|
1239
1226
|
],
|
|
1240
1227
|
"azureServices": [
|
|
1241
|
-
"Azure
|
|
1242
|
-
"Azure
|
|
1243
|
-
"Azure AI Foundry"
|
|
1244
|
-
|
|
1245
|
-
],
|
|
1246
|
-
"optionalCategory": "Logistics"
|
|
1228
|
+
"Azure AI Document Intelligence",
|
|
1229
|
+
"Azure Machine Learning",
|
|
1230
|
+
"Azure AI Foundry"
|
|
1231
|
+
]
|
|
1247
1232
|
}
|
|
1248
1233
|
]
|
|
1249
|
-
}
|
|
1234
|
+
}
|