godqhr1421 commited on
Commit
7633c93
·
verified ·
1 Parent(s): dcfba30

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -5
README.md CHANGED
@@ -1,10 +1,28 @@
1
  ---
2
- title: Muse Glimmer 30b Agentic Demo
3
- emoji: 📊
4
  colorFrom: purple
5
- colorTo: red
6
  sdk: static
7
- pinned: false
 
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Muse Glimmer 30B Agentic Demo
3
+ emoji:
4
  colorFrom: purple
5
+ colorTo: indigo
6
  sdk: static
7
+ app_file: index.html
8
+ short_description: Safe tool-call demo for Muse Glimmer 30B
9
+ models:
10
+ - vcruz305/Muse-Glimmer-30B-Hermes-Agentic
11
  ---
12
 
13
+ # Muse Glimmer 30B Hermes Agentic demo
14
+
15
+ This Space demonstrates [`vcruz305/Muse-Glimmer-30B-Hermes-Agentic`](https://huggingface.co/vcruz305/Muse-Glimmer-30B-Hermes-Agentic). The live static interface can call a public, no-auth OpenAI-compatible endpoint serving the model. A self-hosted ZeroGPU Gradio implementation is included in `app.py` and is ready to activate when GPU hosting is available.
16
+
17
+ The interface demonstrates the behavior targeted by the fine-tune: answer directly when a tool is unnecessary, or propose one or two Hermes-style tool calls and stop. Tool calls are parsed and displayed, but never executed.
18
+
19
+ ## Safety and limitations
20
+
21
+ - The Space does not run commands, read files, browse the web, or perform destructive actions.
22
+ - Outputs are generated by research weights and may be incorrect or unsafe.
23
+ - The model is about 30B parameters and requires a 96 GB ZeroGPU allocation in BF16. The account that owns this Space is not currently eligible to create ZeroGPU Spaces, so the static client does not host the weights itself.
24
+ - The model card reports 16/20 on its simulated loop gate and 7/7 on a small native Hermes battery. These results are not a product certification.
25
+
26
+ ## API and MCP
27
+
28
+ The static demo accepts a public, no-auth OpenAI-compatible endpoint and sends requests directly from the visitor's browser. It does not accept or retain API keys. The included Gradio implementation exposes a `generate` endpoint and launches with MCP support once the Space is switched to Gradio with ZeroGPU hardware.