Text Generation
GGUF
Korean
English
veterinary
companion-animal
canine
feline
medical
domain-specific
qwen3.5
llama.cpp
lm-studio
not-a-medical-device
conversational
Instructions to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="choonok/VetJarvis-1.1-4B-Instruct-GGUF", filename="VetJarvis-1.1-4B-Instruct-bf16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF: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 choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF: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 choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
Use Docker
docker model run hf.co/choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
- LM Studio
- Jan
- vLLM
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "choonok/VetJarvis-1.1-4B-Instruct-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "choonok/VetJarvis-1.1-4B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
- Ollama
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with Ollama:
ollama run hf.co/choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
- Unsloth Studio
How to use choonok/VetJarvis-1.1-4B-Instruct-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 choonok/VetJarvis-1.1-4B-Instruct-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 choonok/VetJarvis-1.1-4B-Instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for choonok/VetJarvis-1.1-4B-Instruct-GGUF to start chatting
- Pi
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
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": "choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
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 choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
- Lemonade
How to use choonok/VetJarvis-1.1-4B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull choonok/VetJarvis-1.1-4B-Instruct-GGUF:BF16
Run and chat with the model
lemonade run user.VetJarvis-1.1-4B-Instruct-GGUF-BF16
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -87,9 +87,19 @@ LM Studio๋ GUI ๊ธฐ๋ฐ ๋ก์ปฌ LLM ๋๊ตฌ๋ก, ๋น๊ฐ๋ฐ์๋ ์ฝ๊ฒ ๋ชจ๋ธ์
|
|
| 87 |
| **์ปจํ
์คํธ ๊ธธ์ด (Context Length)** | 8192 ~ 32768 | ๊ธธ์๋ก ๋ฉ๋ชจ๋ฆฌ ์ฌ์ฉ๋ ์ฆ๊ฐ. ๋ชจ๋ธ์ ์ต๋ 262,144 ์ง์ |
|
| 88 |
| **GPU ์คํ๋ก๋ฉ (GPU Offload)** | 32 (์ ์ฒด) | ๋ชจ๋ ๋ ์ด์ด๋ฅผ GPU์ ์ฌ๋ฆผ. VRAM ๋ถ์กฑ ์ ์ค์ |
|
| 89 |
|
| 90 |
-
### 5. ์ถ๋ก ํ๋ผ๋ฏธํฐ ์ค์
|
| 91 |
|
| 92 |
-
์ฐ์ธก ์๋จ **
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
| ํ๋ผ๋ฏธํฐ | ๊ฐ |
|
| 95 |
|---------|---|
|
|
@@ -97,14 +107,7 @@ LM Studio๋ GUI ๊ธฐ๋ฐ ๋ก์ปฌ LLM ๋๊ตฌ๋ก, ๋น๊ฐ๋ฐ์๋ ์ฝ๊ฒ ๋ชจ๋ธ์
|
|
| 97 |
| Top-p | **0.9** |
|
| 98 |
| Max Tokens | 32768 |
|
| 99 |
|
| 100 |
-
### 6.
|
| 101 |
-
|
| 102 |
-
```
|
| 103 |
-
๋น์ ์ 'VetJarvis'์
๋๋ค. ํ๊ตญ ์์์ฌ๋ฅผ ๋ณด์กฐํ๋ ์์ ์ง์ AI ์ด์์คํดํธ๋ก,
|
| 104 |
-
๋ชจ๋ ๋ต๋ณ์ ๋ฐ๋์ ํ๊ตญ์ด๋ก ์์ฑํ์ธ์.
|
| 105 |
-
```
|
| 106 |
-
|
| 107 |
-
### 7. ์ฑํ
ํ๊ธฐ
|
| 108 |
|
| 109 |
์ง๋ฌธ์ ์
๋ ฅํ๋ฉด thinking ๊ณผ์ (`Thought for X seconds`)์ ๊ฑฐ์ณ ํ๊ตญ์ด๋ก ๋ต๋ณํฉ๋๋ค.
|
| 110 |
|
|
|
|
| 87 |
| **์ปจํ
์คํธ ๊ธธ์ด (Context Length)** | 8192 ~ 32768 | ๊ธธ์๋ก ๋ฉ๋ชจ๋ฆฌ ์ฌ์ฉ๋ ์ฆ๊ฐ. ๋ชจ๋ธ์ ์ต๋ 262,144 ์ง์ |
|
| 88 |
| **GPU ์คํ๋ก๋ฉ (GPU Offload)** | 32 (์ ์ฒด) | ๋ชจ๋ ๋ ์ด์ด๋ฅผ GPU์ ์ฌ๋ฆผ. VRAM ๋ถ์กฑ ์ ์ค์ |
|
| 89 |
|
| 90 |
+
### 5. System Prompt ๋ฐ ์ถ๋ก ํ๋ผ๋ฏธํฐ ์ค์
|
| 91 |
|
| 92 |
+
์ฐ์ธก ์๋จ์ **โญ ์ฌ์ด๋๋ฐ ํ ๊ธ** ์์ด์ฝ์ ํด๋ฆญํ๊ฑฐ๋ **Ctrl + E** ๋จ์ถํค๋ก ์ฐ์ธก ํจ๋์ ํผ์น๋ฉด, **์์คํ
ํ๋กฌํํธ** ์์ญ๊ณผ **Model Parameters** ์ค์ ์ด ๋ํ๋ฉ๋๋ค.
|
| 93 |
+
|
| 94 |
+
**์์คํ
ํ๋กฌํํธ** ํ
์คํธ ์์ญ์ ๋ค์ ๋ด์ฉ์ ๋ถ์ฌ๋ฃ์ผ์ธ์.
|
| 95 |
+
|
| 96 |
+
```
|
| 97 |
+
๋น์ ์ 'VetJarvis'์
๋๋ค.
|
| 98 |
+
ํ๊ตญ ์์์ฌ๋ฅผ ๋ณด์กฐํ๋ ์์ ์ง์ AI ์ด์์คํดํธ๋ก,
|
| 99 |
+
๋ชจ๋ ๋ต๋ณ์ ๋ฐ๋์ ํ๊ตญ์ด๋ก ์์ฑํ์ธ์.
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
๊ฐ์ ์ฐ์ธก ํจ๋์์ ์ถ๋ก ํ๋ผ๋ฏธํฐ๋ ์กฐ์ ํ ์ ์์ต๋๋ค.
|
| 103 |
|
| 104 |
| ํ๋ผ๋ฏธํฐ | ๊ฐ |
|
| 105 |
|---------|---|
|
|
|
|
| 107 |
| Top-p | **0.9** |
|
| 108 |
| Max Tokens | 32768 |
|
| 109 |
|
| 110 |
+
### 6. ์ฑํ
ํ๊ธฐ
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
์ง๋ฌธ์ ์
๋ ฅํ๋ฉด thinking ๊ณผ์ (`Thought for X seconds`)์ ๊ฑฐ์ณ ํ๊ตญ์ด๋ก ๋ต๋ณํฉ๋๋ค.
|
| 113 |
|