Spaces:
Runtime error
Runtime error
Commit ·
c45e6ad
1
Parent(s): 291966d
Professional README with capabilities, TLDR, and accreditation
Browse files
README.md
CHANGED
|
@@ -10,14 +10,57 @@ license: apache-2.0
|
|
| 10 |
|
| 11 |
# ShellWhisperer-1.5B
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
##
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
```
|
| 18 |
-
POST /api/chat
|
| 19 |
-
{"model": "FableForge-AI/shellwhisperer", "messages": [{"role": "user", "content": "your prompt"}]}
|
| 20 |
-
```
|
| 21 |
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# ShellWhisperer-1.5B
|
| 12 |
|
| 13 |
+
A fast, lightweight shell and CLI specialist model. Optimized for generating production-ready terminal code — bash scripts, Python automation, Docker commands, git workflows, and API calls.
|
| 14 |
|
| 15 |
+
## TL;DR
|
| 16 |
|
| 17 |
+
**1 GB · 29 tok/s · Free to use · Raw Ollama API**
|
| 18 |
+
|
| 19 |
+
Focused prompts → working code. Not explanations. Not plans. The actual script, ready to save and run.
|
| 20 |
+
|
| 21 |
+
## Capabilities
|
| 22 |
+
|
| 23 |
+
### ✅ What It Can Do
|
| 24 |
+
- Write complete bash scripts with functions, error handling, and logging
|
| 25 |
+
- Generate Python automation and data processing scripts
|
| 26 |
+
- Create Dockerfiles, compose files, and container commands
|
| 27 |
+
- Build git workflows and version control operations
|
| 28 |
+
- Construct API calls and curl commands
|
| 29 |
+
- Handle system administration and file management tasks
|
| 30 |
+
|
| 31 |
+
### ❌ What It Cannot Do
|
| 32 |
+
- Frontend development (HTML, CSS, JavaScript)
|
| 33 |
+
- Large file processing or full codebase rewrites
|
| 34 |
+
- The context window is limited — prompts should target single functions or focused tasks
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
The Space exposes a raw Ollama API at `/api/chat`:
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
curl -X POST https://karma-devops-shellwhisperer-demo.hf.space/api/chat \
|
| 42 |
+
-H "Content-Type: application/json" \
|
| 43 |
+
-d '{
|
| 44 |
+
"model": "FableForge-AI/shellwhisperer",
|
| 45 |
+
"messages": [{"role": "user", "content": "Write a bash script to monitor a directory for new files"}],
|
| 46 |
+
"stream": false
|
| 47 |
+
}'
|
| 48 |
```
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
+
## Best Practices
|
| 51 |
+
|
| 52 |
+
| Do | Don't |
|
| 53 |
+
|----|-------|
|
| 54 |
+
| Send focused, single-function prompts | Send entire files or codebases |
|
| 55 |
+
| Ask for specific outputs (bash, Python, Docker) | Ask for frontend or UI code |
|
| 56 |
+
| Review generated code before running | Assume output is production-ready without review |
|
| 57 |
+
|
| 58 |
+
## Credits
|
| 59 |
+
|
| 60 |
+
Built by **FableForge AI** as part of the Mythos model ecosystem.
|
| 61 |
+
|
| 62 |
+
- **Original Repo:** [github.com/KingLabsA/mythos](https://github.com/KingLabsA/mythos)
|
| 63 |
+
- **HuggingFace:** [huggingface.co/fableforge-ai](https://huggingface.co/fableforge-ai)
|
| 64 |
+
- **License:** Apache 2.0
|
| 65 |
+
|
| 66 |
+
*ShellWhisperer-1.5B is a fine-tuned shell specialist based on Qwen2.5-1.5B, part of the FableForge open-source agent ecosystem.*
|