Instructions to use AdithyaSrivastava01/RickLLM 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 AdithyaSrivastava01/RickLLM 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 AdithyaSrivastava01/RickLLM:Q8_0 # Run inference directly in the terminal: llama cli -hf AdithyaSrivastava01/RickLLM:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AdithyaSrivastava01/RickLLM:Q8_0 # Run inference directly in the terminal: llama cli -hf AdithyaSrivastava01/RickLLM:Q8_0
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 AdithyaSrivastava01/RickLLM:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf AdithyaSrivastava01/RickLLM:Q8_0
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 AdithyaSrivastava01/RickLLM:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf AdithyaSrivastava01/RickLLM:Q8_0
Use Docker
docker model run hf.co/AdithyaSrivastava01/RickLLM:Q8_0
- LM Studio
- Jan
- Ollama
How to use AdithyaSrivastava01/RickLLM with Ollama:
ollama run hf.co/AdithyaSrivastava01/RickLLM:Q8_0
- Unsloth Studio
How to use AdithyaSrivastava01/RickLLM 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 AdithyaSrivastava01/RickLLM 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 AdithyaSrivastava01/RickLLM to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AdithyaSrivastava01/RickLLM to start chatting
- Docker Model Runner
How to use AdithyaSrivastava01/RickLLM with Docker Model Runner:
docker model run hf.co/AdithyaSrivastava01/RickLLM:Q8_0
- Lemonade
How to use AdithyaSrivastava01/RickLLM with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AdithyaSrivastava01/RickLLM:Q8_0
Run and chat with the model
lemonade run user.RickLLM-Q8_0
List all available models
lemonade list
- Atomic Chat
Add README
Browse files
README.md
CHANGED
|
@@ -1,22 +1,25 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
-
|
| 12 |
-
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: llama.cpp
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# RickLLM
|
| 6 |
+
|
| 7 |
+
This is a GGUF format model uploaded using llama.cpp.
|
| 8 |
+
|
| 9 |
+
## Model Details
|
| 10 |
+
|
| 11 |
+
- **Model Format:** GGUF (GPU/CPU inference using llama.cpp)
|
| 12 |
+
- **Base Model:** Unsloth
|
| 13 |
+
- **Quantization:** Q8_0
|
| 14 |
+
- **Use Case:** This model can be used with llama.cpp for efficient inference on both GPU and CPU.
|
| 15 |
+
|
| 16 |
+
## Usage
|
| 17 |
+
|
| 18 |
+
This model can be used with llama.cpp. Example usage:
|
| 19 |
+
|
| 20 |
+
```bash
|
| 21 |
+
./main -m RickLLM.gguf -n 1024
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
## License
|
| 25 |
+
Please refer to the original model's license for terms of use.
|