Instructions to use BoscoTheDog/tiny_therapy with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use BoscoTheDog/tiny_therapy with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="BoscoTheDog/tiny_therapy", filename="tinyllama-therapy-bot-v1.Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use BoscoTheDog/tiny_therapy with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf BoscoTheDog/tiny_therapy:Q4_K_M # Run inference directly in the terminal: llama-cli -hf BoscoTheDog/tiny_therapy:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf BoscoTheDog/tiny_therapy:Q4_K_M # Run inference directly in the terminal: llama-cli -hf BoscoTheDog/tiny_therapy: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 BoscoTheDog/tiny_therapy:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf BoscoTheDog/tiny_therapy: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 BoscoTheDog/tiny_therapy:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf BoscoTheDog/tiny_therapy:Q4_K_M
Use Docker
docker model run hf.co/BoscoTheDog/tiny_therapy:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use BoscoTheDog/tiny_therapy with Ollama:
ollama run hf.co/BoscoTheDog/tiny_therapy:Q4_K_M
- Unsloth Studio new
How to use BoscoTheDog/tiny_therapy 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 BoscoTheDog/tiny_therapy 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 BoscoTheDog/tiny_therapy to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for BoscoTheDog/tiny_therapy to start chatting
- Docker Model Runner
How to use BoscoTheDog/tiny_therapy with Docker Model Runner:
docker model run hf.co/BoscoTheDog/tiny_therapy:Q4_K_M
- Lemonade
How to use BoscoTheDog/tiny_therapy with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull BoscoTheDog/tiny_therapy:Q4_K_M
Run and chat with the model
lemonade run user.tiny_therapy-Q4_K_M
List all available models
lemonade list
Upload 11 files
Browse files- .gitattributes +11 -0
- tinyllama-therapy-bot-v1.Q2_K.gguf +3 -0
- tinyllama-therapy-bot-v1.Q3_K_L.gguf +3 -0
- tinyllama-therapy-bot-v1.Q3_K_M.gguf +3 -0
- tinyllama-therapy-bot-v1.Q3_K_S.gguf +3 -0
- tinyllama-therapy-bot-v1.Q4_K_M.gguf +3 -0
- tinyllama-therapy-bot-v1.Q4_K_S.gguf +3 -0
- tinyllama-therapy-bot-v1.Q5_K_M.gguf +3 -0
- tinyllama-therapy-bot-v1.Q5_K_S.gguf +3 -0
- tinyllama-therapy-bot-v1.Q6_K.gguf +3 -0
- tinyllama-therapy-bot-v1.Q8_0.gguf +3 -0
- tinyllama-therapy-bot-v1.fp16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,14 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip 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 |
+
tinyllama-therapy-bot-v1.fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
tinyllama-therapy-bot-v1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
tinyllama-therapy-bot-v1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
tinyllama-therapy-bot-v1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
tinyllama-therapy-bot-v1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
tinyllama-therapy-bot-v1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
tinyllama-therapy-bot-v1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
tinyllama-therapy-bot-v1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
tinyllama-therapy-bot-v1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
tinyllama-therapy-bot-v1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
tinyllama-therapy-bot-v1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
tinyllama-therapy-bot-v1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7351c06e5b0010e64f0476adf4d482792d4601675d72ea2a34f90b620b6678b
|
| 3 |
+
size 432131040
|
tinyllama-therapy-bot-v1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0217822c6ccc40e6030aef9943e2ed91ec9dec8e2a007778b167d6e0d0cd661b
|
| 3 |
+
size 591526880
|
tinyllama-therapy-bot-v1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27155fa118a2f4ec8b91d27077369f92b4576213531eb560f1e67bf625f1dcc8
|
| 3 |
+
size 548404192
|
tinyllama-therapy-bot-v1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e14c6c8d9fd78160d3b8935914fe77efc721fede8333268bfb1ed58a20dd4c5e
|
| 3 |
+
size 499342304
|
tinyllama-therapy-bot-v1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63ab5a3ea1e5c2745502de908c517eefc7d0ee93a22a527251a9fec7c8b8d81d
|
| 3 |
+
size 667814880
|
tinyllama-therapy-bot-v1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0e2d7ba314976de9363146c9550abcf7ed5b138588b71e94995d7b279d83a4b
|
| 3 |
+
size 639871968
|
tinyllama-therapy-bot-v1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3badd403025a6b74c2c9ae59abc0900f4534a3e0dc114f1728735297a63e1042
|
| 3 |
+
size 782044128
|
tinyllama-therapy-bot-v1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e3c3bbf971b713e376e365c330b58fdbdc54423e98c822cb6925d3f14def101
|
| 3 |
+
size 766028768
|
tinyllama-therapy-bot-v1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c1cfe9b063367a6d5184545ee4af6236fa1e141f6efd23a21f9c851a1a4aa1d
|
| 3 |
+
size 903412704
|
tinyllama-therapy-bot-v1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90371027321f39a9a6f183b02d713e0ccd30013f38921d1f1f9fd13c1867f9ba
|
| 3 |
+
size 1169808352
|
tinyllama-therapy-bot-v1.fp16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b1c7e419c3f6921f8f6b659bd090fcead24857590fcd5ae7bbcb3683d41b34b
|
| 3 |
+
size 2201017280
|