Instructions to use catmind/dx-brian-v1 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 catmind/dx-brian-v1 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 catmind/dx-brian-v1:BF16 # Run inference directly in the terminal: llama cli -hf catmind/dx-brian-v1:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf catmind/dx-brian-v1:BF16 # Run inference directly in the terminal: llama cli -hf catmind/dx-brian-v1:BF16
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 catmind/dx-brian-v1:BF16 # Run inference directly in the terminal: ./llama-cli -hf catmind/dx-brian-v1:BF16
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 catmind/dx-brian-v1:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf catmind/dx-brian-v1:BF16
Use Docker
docker model run hf.co/catmind/dx-brian-v1:BF16
- LM Studio
- Jan
- Ollama
How to use catmind/dx-brian-v1 with Ollama:
ollama run hf.co/catmind/dx-brian-v1:BF16
- Unsloth Desktop
- Docker Model Runner
How to use catmind/dx-brian-v1 with Docker Model Runner:
docker model run hf.co/catmind/dx-brian-v1:BF16
- Lemonade
How to use catmind/dx-brian-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull catmind/dx-brian-v1:BF16
Run and chat with the model
lemonade run user.dx-brian-v1-BF16
List all available models
lemonade list
- Atomic Chat
Trained with Unsloth - Ollama Modelfile
Browse files
Modelfile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
FROM .
|
| 3 |
+
TEMPLATE """{{- range $i, $_ := .Messages }}
|
| 4 |
+
{{- $last := eq (len (slice $.Messages $i)) 1 }}
|
| 5 |
+
<|turn>{{ .Role }}
|
| 6 |
+
{{ .Content }}{{ if not $last }}<turn|>
|
| 7 |
+
{{ end }}
|
| 8 |
+
{{- end }}<turn|>
|
| 9 |
+
<|turn>model
|
| 10 |
+
"""
|