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
| license: other | |
| license_name: vetjarvis-model-license-1.0-nc | |
| license_link: LICENSE | |
| language: | |
| - ko | |
| - en | |
| base_model: | |
| - choonok/VetJarvis-1.1-4B-Instruct | |
| base_model_relation: quantized | |
| pipeline_tag: text-generation | |
| library_name: gguf | |
| tags: | |
| - veterinary | |
| - companion-animal | |
| - canine | |
| - feline | |
| - medical | |
| - domain-specific | |
| - qwen3.5 | |
| - gguf | |
| - llama.cpp | |
| - not-a-medical-device | |
| # VetJarvis 1.1-4B-Instruct (GGUF) | |
| [choonok/VetJarvis-1.1-4B-Instruct](https://huggingface.co/choonok/VetJarvis-1.1-4B-Instruct)λ₯Ό GGUF ν¬λ§·μΌλ‘ λ³νν λ²μ μ λλ€. | |
| llama.cpp, Ollama, LM Studio λ± λ‘컬 μΆλ‘ λꡬμμ μ¬μ©ν μ μμ΅λλ€. | |
| This is a GGUF-converted version of [choonok/VetJarvis-1.1-4B-Instruct](https://huggingface.co/choonok/VetJarvis-1.1-4B-Instruct), suitable for local inference with llama.cpp, Ollama, LM Studio, etc. | |
| ## μ 곡 νμΌ / Files | |
| | νμΌ | μμν | ν¬κΈ° | κΆμ₯ μ©λ | | |
| |------|--------|------|----------| | |
| | `VetJarvis-1.1-4B-Instruct-bf16.gguf` | BF16 | ~7.9 GB | μ νλ μ°μ , μλ², GPU 16GB+ | | |
| | `VetJarvis-1.1-4B-Instruct-q8_0.gguf` | Q8_0 | ~4.2 GB | κ±°μ 무μμ€, μΌλ° μ¬μ© κΆμ₯ | | |
| ## μΆμ² μΆλ‘ νλΌλ―Έν° / Recommended Inference Parameters | |
| | νλΌλ―Έν° | κ° | | |
| |---------|---| | |
| | Temperature | **0.8** | | |
| | Top-p | **0.9** | | |
| | Max Tokens | **32,768** | | |
| | Context Length | β€ 262,144 | | |
| | enable_thinking | **True** (κΆμ₯) | | |
| ## μ¬μ©λ² / Usage | |
| ### llama.cpp | |
| ```bash | |
| ./build/bin/llama-cli \ | |
| -m VetJarvis-1.1-4B-Instruct-q8_0.gguf \ | |
| --jinja \ | |
| -ngl 99 \ | |
| -sys "λΉμ μ νκ΅ μμμ¬λ₯Ό 보쑰νλ AI μ΄μμ€ν΄νΈμ λλ€. λ°λμ νκ΅μ΄λ‘ λ΅λ³νμΈμ." \ | |
| -p "κ³ μμ΄ λ§μ± μ λΆμ μ μ΄κΈ° μ¦μμ?" \ | |
| -n 32768 \ | |
| --temp 0.8 \ | |
| --top-p 0.9 | |
| ``` | |
| ### Ollama | |
| ``` | |
| FROM ./VetJarvis-1.1-4B-Instruct-q8_0.gguf | |
| PARAMETER temperature 0.8 | |
| PARAMETER top_p 0.9 | |
| PARAMETER num_ctx 32768 | |
| PARAMETER stop "<|im_end|>" | |
| ``` | |
| ```bash | |
| ollama create vetjarvis-1.1-4b-instruct -f Modelfile | |
| ollama run vetjarvis-1.1-4b-instruct | |
| ``` | |
| ### LM Studio | |
| μΆν μ¬μ©λ² κ°μ΄λλ₯Ό μΆκ°ν μμ μ λλ€. _Detailed LM Studio guide will be added later._ | |
| ## λ³ν μ 보 / Conversion Details | |
| - λ³ν λꡬ: [llama.cpp](https://github.com/ggerganov/llama.cpp) `convert_hf_to_gguf.py` | |
| - μλ³Έ μ λ°λ: BF16 (Qwen3.5-4Bλ BF16μΌλ‘ νμ΅λ¨) | |
| - λ³ν μ BF16 β BF16 μ§μ λ³ν (μ λ°λ μμ€ μμ) | |
| - Q8_0μ μλ³Έμμ μ§μ μμν μμ± | |
| ## λͺ¨λΈ μν€ν μ² / Architecture Note | |
| μ΄ λͺ¨λΈμ Qwen3.5μ **Transformer + SSM νμ΄λΈλ¦¬λ μν€ν μ²**μ λλ€. 256K ν ν°μ κΈ΄ 컨ν μ€νΈλ₯Ό μ§μνλ©°, llama.cppμμ μ μ λμμ΄ νμΈλμμ΅λλ€. | |
| q4_K_M κ°μ μ λΉνΈ μμνλ SSM λ μ΄μ΄ μμ€μ΄ μΌλ° Transformer λͺ¨λΈλ³΄λ€ ν΄ μ μμΌλ―λ‘, **BF16 λλ Q8_0 μ¬μ©μ κΆμ₯**ν©λλ€. | |
| ## λΌμ΄μ μ€ / License | |
| μλ³Έ λͺ¨λΈμ λΌμ΄μ μ€(`vetjarvis-model-license-1.0-nc`)λ₯Ό κ·Έλλ‘ λ°λ¦ λλ€. **λΉμμ μ μ©λ**λ‘λ§ μ¬μ© κ°λ₯ν©λλ€. μμΈν λ΄μ©μ λλ΄λ [LICENSE](LICENSE) νμΌμ μ°Έκ³ νμΈμ. | |
| This GGUF version inherits the original `vetjarvis-model-license-1.0-nc` license. **Non-commercial use only.** See the included [LICENSE](LICENSE) file for details. | |
| ## β οΈ μλ£κΈ°κΈ° μλ / Not a Medical Device | |
| λ³Έ λͺ¨λΈμ **μμ μμ¬κ²°μ μ 보쑰νλ μ°Έκ³ λꡬ**μ΄λ©°, μ§λ¨/μ²λ°©μ λ체νμ§ μμ΅λλ€. λͺ¨λ μμ νλ¨μ μ격μ κ°μΆ μμμ¬κ° μνν΄μΌ ν©λλ€. | |
| This model is a reference tool to support clinical decision-making. It is **not a medical device** and does not replace diagnosis or prescription by a qualified veterinarian. | |