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
-**Text Generation** — Generate coherent text using large language models optimized for Intel hardware.
17
+
-**Text to Speech** — Natural-sounding speech synthesis with multiple voice options powered by Kokoro TTS.
18
+
-**Speech to Text** — Real-time speech recognition with low-latency transcription using Whisper models optimized for Intel hardware.
19
+
-**Speaker Diarization** — Identify and label speakers in audio recordings using pyannote.audio speaker diarization models.
20
+
-**Text Embedding** — Generate dense vector embeddings for semantic search and RAG pipelines.
21
+
-**Reranker** — Rescore and rerank documents by relevance for improved search and RAG pipelines.
22
+
-**Vector Database** — FAISS-based vector storage for knowledge base management, semantic search, and RAG pipelines.
23
+
-**Lipsync** — Real-time avatar lip-syncing with Wav2Lip, streamed over WebRTC.
24
+
-**Image Generation** — Generate images from text prompts using diffusion models accelerated with OpenVINO.
25
+
-**MCP Manager** — Manage Model Context Protocol servers and their tool integrations.
26
+
-**Wake Word Detection** — Detect custom wake words from microphone input and send webhook notifications on detection events.
27
+
-**Samples:** Sample use cases that implement the AI services
28
+
-**Digital Avatar** — Interact with an AI-powered avatar that combines real-time video with intelligent conversation.
29
+
-**Digital Avatar Lite** — A lightweight animated robot avatar that brings conversations to life with responsive movements and expressions.
30
+
-**RAG Chatbot** — Upload documents and chat with an AI that retrieves relevant context to answer your questions.
31
+
-**Medical Scribe** — Automatically transcribe and diarize doctor-patient conversations, then generate structured SOAP notes.
32
+
-**Webcam Capture with VLM** — Demonstrate the integration of webcam capture and Visual Language Model (VLM) for enhanced interaction.
33
+
-**[AI Exam Marking](./frontend/src/samples/ai-exam-marking/README.md)** — AI-powered exam marking using OCR and LLM to automatically grade test papers from images.
34
+
-**PowerPoint Translator** — Translate PowerPoint presentations while preserving formatting using AI.
35
+
-**[Geti Image Classification](./frontend/src/samples/geti-classifier/README.md)** — Classify images using a local Intel Geti deployment and send feedback for continuous model improvement.
36
+
-**Synthetic Image Generation** — Generate and edit synthetic images from base images in real-time for dataset augmentation.
37
+
-**Robotics AI** — A demo showcasing the capabilities of Robotics AI, including real-time object detection and manipulation.
38
+
-**Suites:** Curated industry-specific AI solution packages built on Intel Edge AI Suites
39
+
-[*Manufacturing AI Suite*](https://github.com/open-edge-platform/edge-ai-suites/tree/main/manufacturing-ai-suite) — A comprehensive toolkit for building, deploying, and scaling AI applications in industrial environments. Enables real-time integration with optimized hardware for production workflow automation, workplace safety, defect detection, and asset tracking.
40
+
-[**Pallet Defect Detection**](https://github.com/open-edge-platform/edge-ai-suites/tree/main/manufacturing-ai-suite/industrial-edge-insights-vision) — Real-time pallet condition monitoring on warehouse video streams using DL Streamer Pipeline Server, OpenVINO inference, and WebRTC streaming.
41
+
-[*Metro AI Suite*](https://github.com/open-edge-platform/edge-ai-suites/tree/main/metro-ai-suite) — Accelerates application development for edge AI video safety, security, and smart city use cases. Includes OpenVINO™ toolkit, Deep Learning Streamer, and Intel® oneAPI Toolkit for media analytics and AI performance optimization.
42
+
-[**Image-Based Video Search**](https://github.com/open-edge-platform/edge-ai-suites/tree/main/metro-ai-suite/image-based-video-search) — Near real-time image-based similarity search over live video streams using YOLOv11 object detection, ResNet-50 feature extraction via DL Streamer, and Milvus vector indexing.
43
+
-[*Retail AI Suite*](https://github.com/open-edge-platform/edge-ai-suites/tree/main/retail-ai-suite) — Accelerates development of edge AI applications for retail environments, enabling intelligent automation for use cases such as self-checkout, loss prevention, and store analytics with optimized Intel hardware and the OpenVINO™ toolkit.
44
+
-[**Loss Prevention**](https://github.com/intel-retail/loss-prevention/tree/main) — Real-time self-checkout loss prevention using object detection and analytics to identify mis-scans and suspicious activity at the point of sale.
// Folder has no data.ts (not a sample) — nothing to enforce.
48
+
}
49
+
optionalDepsCache.set(sampleId,ids);
50
+
returnids;
51
+
}
52
+
53
+
constsampleModularityPlugin={
54
+
rules: {
55
+
"no-optional-service-imports": {
56
+
meta: {
57
+
type: "problem",
58
+
docs: {
59
+
description:
60
+
"Disallow a sample from statically importing a service it declares as an optional dependency; optional services must be reached only through the generated feature-provider registry so the export tool can prune them with --no-optional.",
61
+
},
62
+
schema: [],
63
+
messages: {
64
+
optionalImport:
65
+
"Sample '{{sample}}' statically imports optional service '{{service}}' ('{{source}}'). A static import drags the service folder back into the export graph, so `--no-optional` can no longer prune it. Wire optional services through @/services/_generated/feature-providers (useFeatureProviders) or a shared @/context bridge instead. See docs/OPTIONAL-SERVICES.md.",
"Layering violation: services must not import from the samples tree (samples sit above services). This keeps services independently prunable and avoids a samples↔services cycle. Put shared contracts in @/context, @/hooks, or @/types. See docs/ARCHITECTURE-LAYERS.md and docs/OPTIONAL-SERVICES.md.",
183
+
},
184
+
],
185
+
},
186
+
],
187
+
},
188
+
},
189
+
{
190
+
files: ["src/engines/**/*.{ts,tsx}"],
191
+
rules: {
192
+
"no-restricted-imports": [
193
+
"error",
194
+
{
195
+
patterns: [
196
+
{
197
+
group: [
198
+
"@/samples",
199
+
"@/samples/**",
200
+
"**/samples/**",
201
+
"@/services",
202
+
"@/services/**",
203
+
"**/services/**",
204
+
],
205
+
message:
206
+
"Layering violation: engines are the bottom layer and must not import from the services or samples trees. Keep engines self-contained; put any shared contract in @/components, @/context, @/hooks, @/lib, or @/types instead. See docs/ARCHITECTURE-LAYERS.md.",
0 commit comments