Instructions to use Dev4285/MiniArt-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Dev4285/MiniArt-1.0 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Dev4285/MiniArt-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf Dev4285/MiniArt-1.0:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Dev4285/MiniArt-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf Dev4285/MiniArt-1.0:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Dev4285/MiniArt-1.0:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Dev4285/MiniArt-1.0:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Dev4285/MiniArt-1.0:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Dev4285/MiniArt-1.0:Q4_K_M
Use Docker
docker model run hf.co/Dev4285/MiniArt-1.0:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Dev4285/MiniArt-1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Dev4285/MiniArt-1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dev4285/MiniArt-1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Dev4285/MiniArt-1.0:Q4_K_M
- Ollama
How to use Dev4285/MiniArt-1.0 with Ollama:
ollama run hf.co/Dev4285/MiniArt-1.0:Q4_K_M
- Unsloth Studio
How to use Dev4285/MiniArt-1.0 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Dev4285/MiniArt-1.0 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Dev4285/MiniArt-1.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Dev4285/MiniArt-1.0 to start chatting
- Pi
How to use Dev4285/MiniArt-1.0 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Dev4285/MiniArt-1.0:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Dev4285/MiniArt-1.0:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Dev4285/MiniArt-1.0 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Dev4285/MiniArt-1.0:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Dev4285/MiniArt-1.0:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Dev4285/MiniArt-1.0 with Docker Model Runner:
docker model run hf.co/Dev4285/MiniArt-1.0:Q4_K_M
- Lemonade
How to use Dev4285/MiniArt-1.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Dev4285/MiniArt-1.0:Q4_K_M
Run and chat with the model
lemonade run user.MiniArt-1.0-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Dev4285/MiniArt-1.0 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Dev4285/MiniArt-1.0:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Dev4285/MiniArt-1.0:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Update model base to Qwen2.5-0.5B with baked MiniArt internal metadata and system identity
Browse files- MiniArt-1.0-Q4_K_M.gguf +2 -2
- Modelfile +4 -2
- README.md +26 -19
- config.json +3 -2
MiniArt-1.0-Q4_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:863d763af52cbe8f62cbc1facde3a0b7935e718be30735553191495bfb42da93
|
| 3 |
+
size 491400032
|
Modelfile
CHANGED
|
@@ -7,8 +7,10 @@ TEMPLATE """{{ if .System }}<|im_start|>system
|
|
| 7 |
{{ end }}<|im_start|>assistant
|
| 8 |
"""
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
PARAMETER repeat_penalty 1.1
|
| 13 |
PARAMETER num_ctx 2048
|
| 14 |
PARAMETER stop "<|im_start|>"
|
|
|
|
| 7 |
{{ end }}<|im_start|>assistant
|
| 8 |
"""
|
| 9 |
|
| 10 |
+
SYSTEM """You are Mini Art by an Indian Lab named OSAMA INC labs"""
|
| 11 |
+
|
| 12 |
+
PARAMETER temperature 0.7
|
| 13 |
+
PARAMETER top_p 0.9
|
| 14 |
PARAMETER repeat_penalty 1.1
|
| 15 |
PARAMETER num_ctx 2048
|
| 16 |
PARAMETER stop "<|im_start|>"
|
README.md
CHANGED
|
@@ -6,44 +6,51 @@ tags:
|
|
| 6 |
- text-generation
|
| 7 |
- gguf
|
| 8 |
- creative
|
| 9 |
-
- roleplay
|
| 10 |
- uncensored
|
|
|
|
| 11 |
- lm-studio
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
---
|
| 14 |
|
| 15 |
# Mini Art 1.0
|
| 16 |
|
| 17 |
-
**Mini Art** is a lightweight, creative AI model developed by **OSAMA INC labs** (India).
|
| 18 |
|
| 19 |
-
Available in **GGUF** format for seamless
|
| 20 |
|
| 21 |
---
|
| 22 |
|
| 23 |
-
## Model
|
| 24 |
|
| 25 |
-
| Property
|
| 26 |
-
|---------------------
|
| 27 |
-
| **Model Name**
|
| 28 |
-
| **Developer**
|
| 29 |
-
| **Origin**
|
| 30 |
-
| **Format**
|
| 31 |
-
| **Quantization**
|
| 32 |
-
| **License**
|
| 33 |
-
| **Context Length**
|
|
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
| 37 |
-
## How to
|
| 38 |
|
| 39 |
### LM Studio
|
| 40 |
|
| 41 |
1. Open **LM Studio**.
|
| 42 |
2. Load `MiniArt-1.0-Q4_K_M.gguf`.
|
| 43 |
-
3.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
### Ollama
|
| 46 |
|
|
|
|
|
|
|
| 47 |
```bash
|
| 48 |
ollama create miniart -f ./Modelfile
|
| 49 |
ollama run miniart
|
|
@@ -52,17 +59,17 @@ ollama run miniart
|
|
| 52 |
### llama.cpp
|
| 53 |
|
| 54 |
```bash
|
| 55 |
-
./main -m MiniArt-1.0-Q4_K_M.gguf -c 2048 -
|
| 56 |
```
|
| 57 |
|
| 58 |
---
|
| 59 |
|
| 60 |
-
## License
|
| 61 |
|
| 62 |
This project is licensed under the [Apache 2.0 License](LICENSE).
|
| 63 |
|
| 64 |
---
|
| 65 |
|
| 66 |
-
## About OSAMA INC labs
|
| 67 |
|
| 68 |
-
OSAMA INC labs is an Indian AI research
|
|
|
|
| 6 |
- text-generation
|
| 7 |
- gguf
|
| 8 |
- creative
|
|
|
|
| 9 |
- uncensored
|
| 10 |
+
- roleplay
|
| 11 |
- lm-studio
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
---
|
| 14 |
|
| 15 |
# Mini Art 1.0
|
| 16 |
|
| 17 |
+
**Mini Art** is a lightweight, high-performance creative AI model developed by **OSAMA INC labs** (India). Optimized for local inference with uncensored, unrestricted generation, Mini Art excels at creative conversation, character roleplay, storytelling, and imaginative dialogue.
|
| 18 |
|
| 19 |
+
Available in **GGUF** format for seamless execution across **LM Studio**, **Ollama**, **llama.cpp**, and **KoboldCpp**.
|
| 20 |
|
| 21 |
---
|
| 22 |
|
| 23 |
+
## ๐ Model Overview
|
| 24 |
|
| 25 |
+
| Property | Value |
|
| 26 |
+
|-------------------|-----------------------------------------|
|
| 27 |
+
| **Model Name** | Mini Art 1.0 |
|
| 28 |
+
| **Developer** | OSAMA INC labs |
|
| 29 |
+
| **Origin** | India ๐ฎ๐ณ |
|
| 30 |
+
| **Format** | GGUF (`.gguf`) |
|
| 31 |
+
| **Quantization** | Q4_K_M (~468 MB) |
|
| 32 |
+
| **License** | Apache 2.0 |
|
| 33 |
+
| **Context Length**| 2048 tokens |
|
| 34 |
+
| **System Identity**| *You are Mini Art by an Indian Lab named OSAMA INC labs* |
|
| 35 |
|
| 36 |
---
|
| 37 |
|
| 38 |
+
## ๐ How to Run
|
| 39 |
|
| 40 |
### LM Studio
|
| 41 |
|
| 42 |
1. Open **LM Studio**.
|
| 43 |
2. Load `MiniArt-1.0-Q4_K_M.gguf`.
|
| 44 |
+
3. In Preset Settings / System Prompt, ensure the identity preset is active:
|
| 45 |
+
```
|
| 46 |
+
You are Mini Art by an Indian Lab named OSAMA INC labs
|
| 47 |
+
```
|
| 48 |
+
4. Start chatting!
|
| 49 |
|
| 50 |
### Ollama
|
| 51 |
|
| 52 |
+
Use the included `Modelfile` (system prompt is pre-configured):
|
| 53 |
+
|
| 54 |
```bash
|
| 55 |
ollama create miniart -f ./Modelfile
|
| 56 |
ollama run miniart
|
|
|
|
| 59 |
### llama.cpp
|
| 60 |
|
| 61 |
```bash
|
| 62 |
+
./main -m MiniArt-1.0-Q4_K_M.gguf -c 2048 --system-prompt "You are Mini Art by an Indian Lab named OSAMA INC labs"
|
| 63 |
```
|
| 64 |
|
| 65 |
---
|
| 66 |
|
| 67 |
+
## ๐ License
|
| 68 |
|
| 69 |
This project is licensed under the [Apache 2.0 License](LICENSE).
|
| 70 |
|
| 71 |
---
|
| 72 |
|
| 73 |
+
## ๐ฎ๐ณ About OSAMA INC labs
|
| 74 |
|
| 75 |
+
OSAMA INC labs is an Indian AI research organization focused on building open, accessible, and powerful local AI models for everyone.
|
config.json
CHANGED
|
@@ -6,8 +6,9 @@
|
|
| 6 |
"quantization": "Q4_K_M",
|
| 7 |
"license": "apache-2.0",
|
| 8 |
"context_length": 2048,
|
| 9 |
-
"
|
| 10 |
-
"
|
|
|
|
| 11 |
"repeat_penalty": 1.1,
|
| 12 |
"pipeline_tag": "text-generation",
|
| 13 |
"languages": ["en"],
|
|
|
|
| 6 |
"quantization": "Q4_K_M",
|
| 7 |
"license": "apache-2.0",
|
| 8 |
"context_length": 2048,
|
| 9 |
+
"system_prompt": "You are Mini Art by an Indian Lab named OSAMA INC labs",
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_p": 0.9,
|
| 12 |
"repeat_penalty": 1.1,
|
| 13 |
"pipeline_tag": "text-generation",
|
| 14 |
"languages": ["en"],
|