Spaces:
Running
Running
Licence files, and add LFS tracking for build
Browse files- .gitattributes +1 -0
- README.md +18 -5
- THIRD_PARTY_NOTICES.txt +61 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
| 33 |
*.zip 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 |
+
Build/WebGL* filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,12 +1,25 @@
|
|
| 1 |
---
|
| 2 |
-
title: LocalVoiceLLM
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
colorTo: purple
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
license: other
|
| 9 |
-
short_description:
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: UnityWebGPU LocalVoiceLLM
|
| 3 |
+
emoji: 📚
|
| 4 |
+
colorFrom: blue
|
| 5 |
colorTo: purple
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
license: other
|
| 9 |
+
short_description: Voice-in, voice-out LLM, running on Unity and WebGPU
|
| 10 |
---
|
| 11 |
|
| 12 |
+
**Copyright (c) 2026 David Addis. All Rights Reserved.**
|
| 13 |
+
|
| 14 |
+
This repository contains compiled web binaries for a local, browser-based voice-to-voice LLM agent using WebGPU. This is for demonstration purposes only. No permission is granted to download, distribute, modify, or reverse-engineer the compiled application or wrapper logic. The application source code is closed and proprietary.
|
| 15 |
+
|
| 16 |
+
## About This Demo
|
| 17 |
+
This interactive web demo runs entirely locally in your browser using WebGPU. No audio or text is sent to the cloud.
|
| 18 |
+
|
| 19 |
+
## Credits & Open Source Models
|
| 20 |
+
While the application wrapper and logic are proprietary, this demo relies on the following open-weights models running locally:
|
| 21 |
+
* **Speech-to-Text:** [Whisper](https://github.com/openai/whisper) by OpenAI (MIT License)
|
| 22 |
+
* **LLM Engine:** [SmolLM2](https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct) by HuggingFaceTB (Apache 2.0 License)
|
| 23 |
+
* **Text-to-Speech:** [Supertonic-2](https://huggingface.co/Supertone/supertonic) by Supertone Inc. (OpenRAIL-M / MIT License)
|
| 24 |
+
|
| 25 |
+
Please see the `THIRD_PARTY_NOTICES.txt` file in this repository for full license texts and copyright acknowledgments.
|
THIRD_PARTY_NOTICES.txt
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This application utilizes the following third-party machine learning models and software. We gratefully acknowledge the developers and researchers who made these available.
|
| 2 |
+
|
| 3 |
+
========================================================================
|
| 4 |
+
1. Whisper (OpenAI)
|
| 5 |
+
========================================================================
|
| 6 |
+
License: MIT License
|
| 7 |
+
Copyright (c) 2022 OpenAI
|
| 8 |
+
|
| 9 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
| 10 |
+
|
| 11 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
| 12 |
+
|
| 13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
| 14 |
+
|
| 15 |
+
========================================================================
|
| 16 |
+
2. SmolLM2 (HuggingFaceTB)
|
| 17 |
+
========================================================================
|
| 18 |
+
License: Apache License, Version 2.0
|
| 19 |
+
Copyright (c) 2025 HuggingFaceTB
|
| 20 |
+
|
| 21 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 22 |
+
you may not use this file except in compliance with the License.
|
| 23 |
+
You may obtain a copy of the License at
|
| 24 |
+
|
| 25 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 26 |
+
|
| 27 |
+
Unless required by applicable law or agreed to in writing, software
|
| 28 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 29 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 30 |
+
See the License for the specific language governing permissions and
|
| 31 |
+
limitations under the License.
|
| 32 |
+
|
| 33 |
+
========================================================================
|
| 34 |
+
3. Supertonic-2 (Supertone Inc.)
|
| 35 |
+
========================================================================
|
| 36 |
+
Model License: OpenRAIL-M License
|
| 37 |
+
Code License: MIT License
|
| 38 |
+
Copyright (c) 2025 Supertone Inc.
|
| 39 |
+
|
| 40 |
+
The Supertonic-2 model weights are licensed under the OpenRAIL-M license.
|
| 41 |
+
The accompanying sample inference code is licensed under the MIT License.
|
| 42 |
+
For the full text of the OpenRAIL-M license, please see the official repository: https://huggingface.co/Supertone/supertonic-2
|
| 43 |
+
|
| 44 |
+
Microphone icons created by judanna - Flaticon
|
| 45 |
+
https://www.flaticon.com/free-icons/microphone
|
| 46 |
+
|
| 47 |
+
Button icons created by judanna - Flaticon
|
| 48 |
+
https://www.flaticon.com/free-icons/button
|
| 49 |
+
|
| 50 |
+
Information-button created by Freepik
|
| 51 |
+
https://www.flaticon.com/free-icons/info
|
| 52 |
+
|
| 53 |
+
Reset icons created by Freepik
|
| 54 |
+
https://www.flaticon.com/free-icons/reset
|
| 55 |
+
|
| 56 |
+
This asset includes the following fonts
|
| 57 |
+
licensed under the SIL Open Font License.
|
| 58 |
+
|
| 59 |
+
Fonts:
|
| 60 |
+
Noto Sans SC
|
| 61 |
+
https://fonts.google.com/noto/specimen/Noto+Sans+SC
|