Reinforcement Learning
Transformers
GGUF
English
tool-use
agent
travel-planning
imatrix
conversational
Instructions to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Agent-STAR-RL-1.5B-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Agent-STAR-RL-1.5B-i1-GGUF", filename="Agent-STAR-RL-1.5B.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF 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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF 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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF 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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Agent-STAR-RL-1.5B-i1-GGUF to start chatting
- Pi
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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": "mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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 "mradermacher/Agent-STAR-RL-1.5B-i1-GGUF: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 mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Agent-STAR-RL-1.5B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Agent-STAR-RL-1.5B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Agent-STAR-RL-1.5B-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +24 -0
- Agent-STAR-RL-1.5B.i1-IQ1_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ1_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ2_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ2_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ2_XS.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ2_XXS.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ3_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ3_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ3_XS.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ3_XXS.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ4_NL.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-IQ4_XS.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q2_K.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q2_K_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q3_K_L.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q3_K_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q3_K_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q4_0.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q4_1.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q4_K_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q4_K_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q5_K_M.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q5_K_S.gguf +3 -0
- Agent-STAR-RL-1.5B.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ 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 |
Agent-STAR-RL-1.5B.imatrix.gguf 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 |
Agent-STAR-RL-1.5B.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Agent-STAR-RL-1.5B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Agent-STAR-RL-1.5B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Agent-STAR-RL-1.5B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Agent-STAR-RL-1.5B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Agent-STAR-RL-1.5B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Agent-STAR-RL-1.5B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Agent-STAR-RL-1.5B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Agent-STAR-RL-1.5B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Agent-STAR-RL-1.5B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Agent-STAR-RL-1.5B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Agent-STAR-RL-1.5B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Agent-STAR-RL-1.5B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Agent-STAR-RL-1.5B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Agent-STAR-RL-1.5B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Agent-STAR-RL-1.5B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Agent-STAR-RL-1.5B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Agent-STAR-RL-1.5B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Agent-STAR-RL-1.5B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Agent-STAR-RL-1.5B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Agent-STAR-RL-1.5B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Agent-STAR-RL-1.5B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Agent-STAR-RL-1.5B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Agent-STAR-RL-1.5B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Agent-STAR-RL-1.5B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Agent-STAR-RL-1.5B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4058f440ef309bc3c856ee1227894194eeca31145c91347dc8046dae30063665
|
| 3 |
+
size 541037632
|
Agent-STAR-RL-1.5B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84c6adc72036f908b932fac12d66238d01b644be62f72dfd5153d4cffaaa4368
|
| 3 |
+
size 513103936
|
Agent-STAR-RL-1.5B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f0b443127005a9d06a28ad576a44f51314df59ccbbb267fb175269c3a697789
|
| 3 |
+
size 701333056
|
Agent-STAR-RL-1.5B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97ade01c25dc953d2a1bc68e633894a18ff3c34cb73d7fc835935513dc688fdd
|
| 3 |
+
size 664088128
|
Agent-STAR-RL-1.5B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8887c5b955c15131def77f36d5c2324bfb5b83cfd5ce404bdd0b31c9fbcd5e55
|
| 3 |
+
size 626903104
|
Agent-STAR-RL-1.5B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8fca1e5695b1f79fe01b7ed6721b72f3c1c3d5cdc3d932353a269a2d92210fab
|
| 3 |
+
size 587593792
|
Agent-STAR-RL-1.5B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b15bc00f5f66cc58faf32b574c1987c6638785e1237316bc10c26c4c91a190e
|
| 3 |
+
size 876942400
|
Agent-STAR-RL-1.5B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e58ab3b6317e19faa70a2b5bc1ee2427c022a0c0b469060b4b2ab984f232655
|
| 3 |
+
size 862685248
|
Agent-STAR-RL-1.5B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47157374899bf788f676c7ff87d1f91c4aa85b16498a5287118485dc60362112
|
| 3 |
+
size 831977536
|
Agent-STAR-RL-1.5B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4652cdd609523b783fe1f16a2261be449940ba51432e3a1edb36972f4943fe8b
|
| 3 |
+
size 769070656
|
Agent-STAR-RL-1.5B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a0b32a42649d43bb1667d916842900c1097782327be448c8c79fc0043cc84c2
|
| 3 |
+
size 1067604544
|
Agent-STAR-RL-1.5B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76cbc90e2893ca1dcfaa4867c630750c66b2a5c70299ce77a598697bcd4f742a
|
| 3 |
+
size 1019712064
|
Agent-STAR-RL-1.5B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c4c8ecaf642d02574a2b700e1bb693ebccc3ef2a7775a4ce60bf7124a8abe4f
|
| 3 |
+
size 752881216
|
Agent-STAR-RL-1.5B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9c0a606c9a7201cdf9980d82530d1c59a20f23e26f6976aa38310a7cc935c4a
|
| 3 |
+
size 716711488
|
Agent-STAR-RL-1.5B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:967f3b475c73bdb74a3c534cd06d42937d3b2022d3665ae3cd25e6588c8ad58e
|
| 3 |
+
size 980441152
|
Agent-STAR-RL-1.5B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a373c15dcc87d638c71a155ca79c363283286e9687b9c7d0faff5cd77593237
|
| 3 |
+
size 924457024
|
Agent-STAR-RL-1.5B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:522533bb15b54e69ce06542126a89c3a1b59f2e7d41de9c4243669060c23a73d
|
| 3 |
+
size 861222976
|
Agent-STAR-RL-1.5B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5d2605d427858b29fb30093f4e0b47ca6d0d9a78fe9e5e3183d3caad9813104
|
| 3 |
+
size 1068808768
|
Agent-STAR-RL-1.5B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89d724851b978a4e040f156a92344986f136c04eadd8540d85ee700c20d48dd1
|
| 3 |
+
size 1162701376
|
Agent-STAR-RL-1.5B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8d323c7ca03e7a570b356b2b631522b38cfc7bb50ea0c99a906adf2aff7edaf
|
| 3 |
+
size 1117321792
|
Agent-STAR-RL-1.5B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6496f7a0059f806014d471190fd388c8858ecb6b7d27086f2f5eb20293ac6c1
|
| 3 |
+
size 1071585856
|
Agent-STAR-RL-1.5B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:621b58509daace95e046e40ccb4fb670adb751c4e0453267880f149f20fb91a0
|
| 3 |
+
size 1285495360
|
Agent-STAR-RL-1.5B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5575d2731d5288e3af3df55f71eb2539c11c75ae97dadb5c0fc831f931d359be
|
| 3 |
+
size 1259174464
|
Agent-STAR-RL-1.5B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afd2d4f21d3cf29be883c517b2302adf0139c2ab602b6e28a196824f6ad7e734
|
| 3 |
+
size 1464179776
|