How to use abetlen/replit-code-v1_5-3b-GGUF 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 abetlen/replit-code-v1_5-3b-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf abetlen/replit-code-v1_5-3b-GGUF:Q4_0Install from WinGet (Windows)winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf abetlen/replit-code-v1_5-3b-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf abetlen/replit-code-v1_5-3b-GGUF:Q4_0Use 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 abetlen/replit-code-v1_5-3b-GGUF:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf abetlen/replit-code-v1_5-3b-GGUF:Q4_0Build from source codegit 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 abetlen/replit-code-v1_5-3b-GGUF:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf abetlen/replit-code-v1_5-3b-GGUF:Q4_0Use Dockerdocker model run hf.co/abetlen/replit-code-v1_5-3b-GGUF:Q4_0