Skip to content

Commit 8d427f9

Browse files
authored
Merge branch 'main' into feature/rkatakol/ibvs_reverse_proxy
2 parents 9ce133c + 703dba2 commit 8d427f9

File tree

733 files changed

+347806
-2666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

733 files changed

+347806
-2666
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ README.md @xwu2intel
3333
# robotics-ai
3434
/robotics-ai-suite/ @jouillet @jb-balaji @pirouf @mohitmeh12 @pperycz @xwu2intel
3535

36-
36+
# education-ai
37+
/education-ai-suite/ @avinash-palleti @unarayan
3738

3839
# documentation content - manufacturing-ai
3940
/manufacturing-ai-suite/README.md @xwu2intel @hteeyeoh @ajagadi1 @vkb1 @open-edge-platform/open-edge-platform-docs-write
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: "Education-Suite-CI"
6+
run-name: "[Education-Suite-CI] PR workflow (by @${{ github.actor }} via ${{ github.event_name }})"
7+
8+
9+
# Only run at most 1 workflow concurrently per PR, unlimited for branches
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.sha }}
12+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
13+
14+
on:
15+
pull_request:
16+
branches:
17+
- main
18+
paths:
19+
- 'education-ai-suite/**'
20+
21+
jobs:
22+
23+
trivy-scan:
24+
runs-on: ubuntu-24.04
25+
permissions:
26+
contents: read
27+
steps:
28+
- uses: actions/checkout@8edcb1bdb4e267140fa742c62e395cd74f332709
29+
with:
30+
persist-credentials: false
31+
32+
- name: Run Trivy Filesystem Scan
33+
uses: open-edge-platform/orch-ci/.github/actions/security/trivy@27276444a9bcf247a27369406686b689933bd1ff
34+
id: trivy-fs
35+
with:
36+
scan_type: "fs"
37+
scan-scope: "all"
38+
severity: "HIGH,CRITICAL"
39+
format: "json"
40+
scan_target: "education-ai-suite/"
41+
report_suffix: "-fs-education-ai-suite-trivy"
42+
43+
- name: Run trivy Scan - education-suite (SPDX SBOM)
44+
uses: open-edge-platform/orch-ci/.github/actions/security/trivy@27276444a9bcf247a27369406686b689933bd1ff
45+
id: videosummary-frontend-spdx
46+
with:
47+
scan_type: "fs"
48+
scan-scope: "all"
49+
scan_target: "education-ai-suite/"
50+
severity: "HIGH,CRITICAL"
51+
format: "spdx-json"
52+
scanners: "vuln"
53+
report_suffix: "-education-ai-suite-spdx-trivy"
54+
generate_sbom: "true"
55+
56+
- name: Upload Report
57+
uses: actions/upload-artifact@de65e23aa2b7e23d713bb51fbfcb6d502f8667d8
58+
with:
59+
name: trivy-report-video-summary
60+
path: security-results/trivy*

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ These suites accelerate the development of custom AI solutions by offering:
2424

2525
[The Retail AI Suite](retail-ai-suite) accelerates hardware decisions for Retail AI workloads at the edge, featuring use cases such as self-checkout and loss prevention.
2626

27+
2728
[The Robotics AI Suite](robotics-ai-suite) provides ready to use samples leveraging AI to help solve common robotics problems such as perception, navigation, simulation, and planning.
2829

30+
[The Education AI Suite](education-ai-suite) is a preview collection of education-focused AI applications, libraries, and benchmarking tools to help developers build solutions faster.
31+
2932

3033
## Contribute
3134

education-ai-suite/.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Ignore Python cache
2+
__pycache__/
3+
*.py[cod]
4+
5+
# Ignore storage directory
6+
storage/
7+
8+
# Ignore models directory
9+
models/
10+
11+
# Ignore chunks directory
12+
chunks/
13+
14+
#Ignore logs
15+
monitoring/executionlogs/
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, caste, color, religion, or sexual
10+
identity and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
* Demonstrating empathy and kindness toward other people
21+
* Being respectful of differing opinions, viewpoints, and experiences
22+
* Giving and gracefully accepting constructive feedback
23+
* Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
* Focusing on what is best not just for us as individuals, but for the overall
26+
community
27+
28+
Examples of unacceptable behavior include:
29+
30+
* The use of sexualized language or imagery, and sexual attention or advances of
31+
any kind
32+
* Trolling, insulting or derogatory comments, and personal or political attacks
33+
* Public or private harassment
34+
* Publishing others' private information, such as a physical or email address,
35+
without their explicit permission
36+
* Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official e-mail address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement at
63+
CommunityCodeOfConduct AT intel DOT com.
64+
All complaints will be reviewed and investigated promptly and fairly.
65+
66+
All community leaders are obligated to respect the privacy and security of the
67+
reporter of any incident.
68+
69+
## Enforcement Guidelines
70+
71+
Community leaders will follow these Community Impact Guidelines in determining
72+
the consequences for any action they deem in violation of this Code of Conduct:
73+
74+
### 1. Correction
75+
76+
**Community Impact**: Use of inappropriate language or other behavior deemed
77+
unprofessional or unwelcome in the community.
78+
79+
**Consequence**: A private, written warning from community leaders, providing
80+
clarity around the nature of the violation and an explanation of why the
81+
behavior was inappropriate. A public apology may be requested.
82+
83+
### 2. Warning
84+
85+
**Community Impact**: A violation through a single incident or series of
86+
actions.
87+
88+
**Consequence**: A warning with consequences for continued behavior. No
89+
interaction with the people involved, including unsolicited interaction with
90+
those enforcing the Code of Conduct, for a specified period of time. This
91+
includes avoiding interactions in community spaces as well as external channels
92+
like social media. Violating these terms may lead to a temporary or permanent
93+
ban.
94+
95+
### 3. Temporary Ban
96+
97+
**Community Impact**: A serious violation of community standards, including
98+
sustained inappropriate behavior.
99+
100+
**Consequence**: A temporary ban from any sort of interaction or public
101+
communication with the community for a specified period of time. No public or
102+
private interaction with the people involved, including unsolicited interaction
103+
with those enforcing the Code of Conduct, is allowed during this period.
104+
Violating these terms may lead to a permanent ban.
105+
106+
### 4. Permanent Ban
107+
108+
**Community Impact**: Demonstrating a pattern of violation of community
109+
standards, including sustained inappropriate behavior, harassment of an
110+
individual, or aggression toward or disparagement of classes of individuals.
111+
112+
**Consequence**: A permanent ban from any sort of public interaction within the
113+
community.
114+
115+
## Attribution
116+
117+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118+
version 2.1, available at
119+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120+
121+
Community Impact Guidelines were inspired by
122+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123+
124+
For answers to common questions about this code of conduct, see the FAQ at
125+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126+
[https://www.contributor-covenant.org/translations][translations].
127+
128+
[homepage]: https://www.contributor-covenant.org
129+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130+
[Mozilla CoC]: https://github.com/mozilla/diversity
131+
[FAQ]: https://www.contributor-covenant.org/faq
132+
[translations]: https://www.contributor-covenant.org/translations

education-ai-suite/CONTRIBUTING.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Contributing
2+
3+
### License
4+
5+
<PROJECT NAME> is licensed under the terms in [LICENSE]<link to license file in repo>. By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.
6+
7+
### Sign your work
8+
9+
Please use the sign-off line at the end of the patch. Your signature certifies that you wrote the patch or otherwise have the right to pass it on as an open-source patch. The rules are pretty simple: if you can certify
10+
the below (from [developercertificate.org](http://developercertificate.org/)):
11+
12+
```
13+
Developer Certificate of Origin
14+
Version 1.1
15+
16+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
17+
660 York Street, Suite 102,
18+
San Francisco, CA 94110 USA
19+
20+
Everyone is permitted to copy and distribute verbatim copies of this
21+
license document, but changing it is not allowed.
22+
23+
Developer's Certificate of Origin 1.1
24+
25+
By making a contribution to this project, I certify that:
26+
27+
(a) The contribution was created in whole or in part by me and I
28+
have the right to submit it under the open source license
29+
indicated in the file; or
30+
31+
(b) The contribution is based upon previous work that, to the best
32+
of my knowledge, is covered under an appropriate open source
33+
license and I have the right under that license to submit that
34+
work with modifications, whether created in whole or in part
35+
by me, under the same open source license (unless I am
36+
permitted to submit under a different license), as indicated
37+
in the file; or
38+
39+
(c) The contribution was provided directly to me by some other
40+
person who certified (a), (b) or (c) and I have not modified
41+
it.
42+
43+
(d) I understand and agree that this project and the contribution
44+
are public and that a record of the contribution (including all
45+
personal information I submit with it, including my sign-off) is
46+
maintained indefinitely and may be redistributed consistent with
47+
this project or the open source license(s) involved.
48+
```
49+
50+
Then you just add a line to every git commit message:
51+
52+
Signed-off-by: Joe Smith <joe.smith@email.com>
53+
54+
Use your real name (sorry, no pseudonyms or anonymous contributions.)
55+
56+
If you set your `user.name` and `user.email` git configs, you can sign your
57+
commit automatically with `git commit -s`.

education-ai-suite/README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Education AI Suite
2+
3+
**NOTE:** Education AI Suite is currently a **preview release**! A formal release will follow shortly.
4+
5+
## Description
6+
Education AI Suite is a preview collection of education-focused AI applications, libraries, and benchmarking tools to help developers build solutions faster. It provides pipelines and models optimized with the [OpenVINO™ toolkit](https://docs.openvino.ai/) for accelerated performance on Intel® CPUs, integrated GPUs, and NPUs.
7+
8+
9+
## Collection
10+
The suite organizes workflows and capabilities tailored for the **education sector**, with initial support for the **Smart Classroom** application.
11+
12+
---
13+
14+
## 🎓 Smart Classroom
15+
16+
**Smart Classroom** is a modular, extensible framework designed to process and summarize educational content using advanced AI models.
17+
It helps transform raw classroom recordings into concise, structured summaries for students, educators, and learning platforms.
18+
19+
---
20+
21+
### ✨ Features
22+
- 🔊 **Audio transcription** with ASR models (e.g., Whisper, Paraformer)
23+
- 🧠 **Summarization** using powerful LLMs (e.g., Qwen, LLaMA)
24+
- 📦 **Plug-and-play architecture** for integrating new ASR and LLM models
25+
- ⚙️ **API-first design** ready for frontend integration
26+
- 🛠️ **Extensible roadmap** for real-time streaming, diarization, translation, and video analysis
27+
28+
---
29+
30+
### 📖 Documentation
31+
32+
👉 Full setup, usage, and contribution guide:
33+
[**Read the Detailed Documentation**](smart-classroom/README.md)
34+
35+
---
36+
37+
<p align="center">Built with ❤️ to make learning smarter and more accessible.</p>

education-ai-suite/SECURITY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Security Policy
2+
Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation.
3+
4+
## Reporting a Vulnerability
5+
Please report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html).

0 commit comments

Comments
 (0)