Spaces:
Running
Running
feat: add local AI chat demo
Browse files- .gitattributes +1 -0
- README.md +30 -8
- index.html +9 -2
- posters/chat.png +3 -0
- videos/chat.mp4 +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
posters/chat.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -24,17 +24,39 @@ Explore models for:
|
|
| 24 |
|
| 25 |
Want to see what these models can build? Download and run [Hugging Mac on GitHub](https://github.com/devilyouwei/hugging-mac) to experience local AI applications powered by Apple Silicon.
|
| 26 |
|
| 27 |
-
##
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
**[Watch all
|
| 38 |
|
| 39 |
Have an idea for an AI-native game? Contributions are welcome across game
|
| 40 |
concepts, visual and audio assets, code, interaction design, stories, levels,
|
|
|
|
| 24 |
|
| 25 |
Want to see what these models can build? Download and run [Hugging Mac on GitHub](https://github.com/devilyouwei/hugging-mac) to experience local AI applications powered by Apple Silicon.
|
| 26 |
|
| 27 |
+
## Demos
|
| 28 |
|
| 29 |
+
See how local models become private, responsive experiences on Apple Silicon鈥攆rom
|
| 30 |
+
multimodal conversation to real-time vision games.
|
| 31 |
|
| 32 |
+
<table>
|
| 33 |
+
<tr>
|
| 34 |
+
<td align="center" width="50%">
|
| 35 |
+
<strong>Chat</strong><br>
|
| 36 |
+
<a href="https://hugging-mac-readme.hf.space/#chat"><img src="posters/chat.png" alt="Watch the local AI Chat demo"></a><br>
|
| 37 |
+
Talk naturally with a multimodal assistant powered by local ASR, vision, LLM, and TTS.
|
| 38 |
+
</td>
|
| 39 |
+
<td align="center" width="50%">
|
| 40 |
+
<strong>Yolo Pose Follow</strong><br>
|
| 41 |
+
<a href="https://hugging-mac-readme.hf.space/#pose-follow"><img src="posters/pose-follow.png" alt="Watch the Yolo Pose Follow demo"></a><br>
|
| 42 |
+
Match poses and gestures with YOLOv8 Pose.
|
| 43 |
+
</td>
|
| 44 |
+
</tr>
|
| 45 |
+
<tr>
|
| 46 |
+
<td align="center" width="50%">
|
| 47 |
+
<strong>Yolo Fruit Slice</strong><br>
|
| 48 |
+
<a href="https://hugging-mac-readme.hf.space/#fruit-slice"><img src="posters/fruit-slice.png" alt="Watch the Yolo Fruit Slice demo"></a><br>
|
| 49 |
+
Turn your forearms into blades and slice fruit.
|
| 50 |
+
</td>
|
| 51 |
+
<td align="center" width="50%">
|
| 52 |
+
<strong>Palm Thunder</strong><br>
|
| 53 |
+
<a href="https://hugging-mac-readme.hf.space/#palm-thunder"><img src="posters/palm-thunder.png" alt="Watch the Palm Thunder demo"></a><br>
|
| 54 |
+
Steer a live fighter with local hand tracking.
|
| 55 |
+
</td>
|
| 56 |
+
</tr>
|
| 57 |
+
</table>
|
| 58 |
|
| 59 |
+
**[Watch all demos 鈫抅(https://hugging-mac-readme.hf.space/)**
|
| 60 |
|
| 61 |
Have an idea for an AI-native game? Contributions are welcome across game
|
| 62 |
concepts, visual and audio assets, code, interaction design, stories, levels,
|
index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
| 15 |
h1 { font-size:clamp(32px,4.2vw,48px); letter-spacing:-.05em; line-height:1; margin:9px 0 12px; white-space:nowrap; }
|
| 16 |
header p { color:var(--muted); font-size:15px; line-height:1.55; margin:0; }
|
| 17 |
main > h2 { font-size:18px; letter-spacing:-.02em; margin:0 0 10px; }
|
| 18 |
-
.demos { display:grid; gap:14px; grid-template-columns:repeat(
|
| 19 |
article { background:color-mix(in srgb,var(--panel) 92%,transparent); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
|
| 20 |
video { aspect-ratio:16/9; background:#000; display:block; object-fit:contain; width:100%; }
|
| 21 |
.copy { padding:13px 15px 15px; }
|
|
@@ -34,8 +34,15 @@
|
|
| 34 |
</header>
|
| 35 |
|
| 36 |
<main>
|
| 37 |
-
<h2>
|
| 38 |
<section class="demos">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
<article id="pose-follow">
|
| 40 |
<video controls playsinline preload="metadata" poster="https://hugging-mac-readme.static.hf.space/posters/pose-follow.png">
|
| 41 |
<source src="https://hugging-mac-readme.static.hf.space/videos/pose-follow.mp4" type="video/mp4">
|
|
|
|
| 15 |
h1 { font-size:clamp(32px,4.2vw,48px); letter-spacing:-.05em; line-height:1; margin:9px 0 12px; white-space:nowrap; }
|
| 16 |
header p { color:var(--muted); font-size:15px; line-height:1.55; margin:0; }
|
| 17 |
main > h2 { font-size:18px; letter-spacing:-.02em; margin:0 0 10px; }
|
| 18 |
+
.demos { display:grid; gap:14px; grid-template-columns:repeat(2,minmax(0,1fr)); }
|
| 19 |
article { background:color-mix(in srgb,var(--panel) 92%,transparent); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
|
| 20 |
video { aspect-ratio:16/9; background:#000; display:block; object-fit:contain; width:100%; }
|
| 21 |
.copy { padding:13px 15px 15px; }
|
|
|
|
| 34 |
</header>
|
| 35 |
|
| 36 |
<main>
|
| 37 |
+
<h2>Demos</h2>
|
| 38 |
<section class="demos">
|
| 39 |
+
<article id="chat">
|
| 40 |
+
<video controls playsinline preload="metadata" poster="https://hugging-mac-readme.static.hf.space/posters/chat.png">
|
| 41 |
+
<source src="https://hugging-mac-readme.static.hf.space/videos/chat.mp4" type="video/mp4">
|
| 42 |
+
</video>
|
| 43 |
+
<div class="copy"><span>ASR 路 Vision 路 LLM 路 TTS</span><h2>Chat</h2><p>Talk naturally with a private, multimodal assistant running locally.</p></div>
|
| 44 |
+
</article>
|
| 45 |
+
|
| 46 |
<article id="pose-follow">
|
| 47 |
<video controls playsinline preload="metadata" poster="https://hugging-mac-readme.static.hf.space/posters/pose-follow.png">
|
| 48 |
<source src="https://hugging-mac-readme.static.hf.space/videos/pose-follow.mp4" type="video/mp4">
|
posters/chat.png
ADDED
|
Git LFS Details
|
videos/chat.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10ff1166667e93ad64d7ec3e83d16e3f98644c23c53cb07c679489030f3582b6
|
| 3 |
+
size 7933640
|