Skip to content

Commit 42b109d

Browse files
authored
Merge pull request #461 from open-edge-platform/update-branch
Update use cases Edge AI Studio Demo, smart parking, video summarization and delete robotic (#991)
2 parents 6b5e16f + f291be0 commit 42b109d

170 files changed

Lines changed: 2732 additions & 16211 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ sudo bash -c "$(wget -qLO - https://raw.githubusercontent.com/open-edge-platform
4141

4242
| Product Collection | Code Name | Support | Validated Hardware |
4343
|--------------|--------------|-------------------|--------------------|
44+
| Intel® Arc™ Pro B-Series Graphics | Products formerly Battlemage | ✅ Supported | [Intel® Arc™ Pro B70 Creator 32GB](https://www.asrock.com/Graphics-Card/Intel/Intel%20Arc%20Pro%20B70%20Creator%2032GB/index.asp) |
4445
| Intel® Arc™ Pro B-Series Graphics | Products formerly Battlemage | ✅ Supported | [Intel® Arc™ Pro B60 Creator 24GB](https://www.asrock.com/Graphics-Card/Intel/Intel%20Arc%20Pro%20B60%20Creator%2024GB/) |
4546
| Intel® Arc™ B-Series Graphics | Products formerly Battlemage | ✅ Supported |[Intel® Arc™ B580 Challenger 12GB](https://www.asrock.com/Graphics-Card/Intel/Intel%20Arc%20B580%20Challenger%2012GB%20OC/) |
4647
| Intel® Arc™ A-Series Graphics | Products formerly Alchemist | ✅ Supported | [Intel® Arc™ A770 Challenger 16GB](https://www.asrock.com/Graphics-Card/Intel/Intel%20Arc%20A770%20Challenger%2016GB%20OC/index.us.asp)|
@@ -57,6 +58,8 @@ The following table lists the validated hardware combinations using Developer Ki
5758

5859
| CPU | GPU Configuration | Support |
5960
|--------------|-------------------|---------|
61+
| **Arrow Lake (ARL)** | Arc B70 (dGPU) | ✅ Supported |
62+
| **Arrow Lake (ARL)** | 2 x Arc B70 (dGPU) | ✅ Supported |
6063
| **Arrow Lake (ARL)** | Arc B60 (dGPU) | ✅ Supported |
6164
| **Arrow Lake (ARL)** | Arc B580 (dGPU) | ✅ Supported |
6265
| **Arrow Lake (ARL)** | Arc A770 (dGPU) | ✅ Supported |
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Exclude version control metadata and common unwanted folders from the build context
2+
.git
3+
.github
4+
.gitignore
5+
.vscode
6+
7+
**/node_modules
8+
**/thirdparty
9+
**/.next
10+
**/.venv
11+
**/__pycache__
12+
**/.env
13+
14+
workers/engine/multiserve/engine
15+
workers/lipsync/models
16+
17+
frontend/playwright-report
18+
frontend/test-results
19+
frontend/db.sqlite
20+
21+
out
22+
logs
23+
models
24+
tests
25+
thirdparty
26+
playwright-report

usecases/ai/edge-ai-demo-studio/electron/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

usecases/ai/edge-ai-demo-studio/electron/setup.ps1

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ $OutputEncoding = [System.Text.Encoding]::UTF8
77

88
# Exit on error
99
$ErrorActionPreference = "Stop"
10+
$ProgressPreference = 'SilentlyContinue'
1011

1112
# Get the directory of this script
1213
$SCRIPT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path
@@ -43,15 +44,18 @@ function Setup-NodeEnv {
4344
# Main installation
4445
function Main {
4546
Push-Location $SCRIPT_DIR
46-
47-
Write-Host "Setting up Electron Builder environment..."
48-
Setup-NodeEnv
49-
50-
Write-Host "Installing npm dependencies..."
51-
npm install
52-
53-
Write-Host "Electron Builder setup complete!" -ForegroundColor Green
54-
Pop-Location
47+
try {
48+
Write-Host "Setting up Electron Builder environment..."
49+
Setup-NodeEnv
50+
51+
Write-Host "Installing npm dependencies..."
52+
npm install
53+
54+
Write-Host "Electron Builder setup complete!" -ForegroundColor Green
55+
}
56+
finally {
57+
Pop-Location
58+
}
5559
}
5660

5761
Main

usecases/ai/edge-ai-demo-studio/frontend/.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
HF_ENDPOINT="https://huggingface.co"
55
DATABASE_URL=file:./db.sqlite
66
HF_TOKEN=
7-
PAYLOAD_SECRET=
7+
PORT=8080
8+
PAYLOAD_SECRET=

usecases/ai/edge-ai-demo-studio/frontend/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,11 @@ yarn-error.log*
3939
# typescript
4040
*.tsbuildinfo
4141
next-env.d.ts
42+
43+
# Playwright
44+
node_modules/
45+
/test-results/
46+
/playwright-report/
47+
/blob-report/
48+
/playwright/.cache/
49+
/playwright/.auth/

0 commit comments

Comments
 (0)