Instructions to use DQN-Labs/llamacpp-binaries-for-colab 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 DQN-Labs/llamacpp-binaries-for-colab 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 DQN-Labs/llamacpp-binaries-for-colab # Run inference directly in the terminal: llama cli -hf DQN-Labs/llamacpp-binaries-for-colab
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DQN-Labs/llamacpp-binaries-for-colab # Run inference directly in the terminal: llama cli -hf DQN-Labs/llamacpp-binaries-for-colab
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 DQN-Labs/llamacpp-binaries-for-colab # Run inference directly in the terminal: ./llama-cli -hf DQN-Labs/llamacpp-binaries-for-colab
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 DQN-Labs/llamacpp-binaries-for-colab # Run inference directly in the terminal: ./build/bin/llama-cli -hf DQN-Labs/llamacpp-binaries-for-colab
Use Docker
docker model run hf.co/DQN-Labs/llamacpp-binaries-for-colab
- LM Studio
- Jan
- Ollama
How to use DQN-Labs/llamacpp-binaries-for-colab with Ollama:
ollama run hf.co/DQN-Labs/llamacpp-binaries-for-colab
- Unsloth Desktop
- Docker Model Runner
How to use DQN-Labs/llamacpp-binaries-for-colab with Docker Model Runner:
docker model run hf.co/DQN-Labs/llamacpp-binaries-for-colab
- Lemonade
How to use DQN-Labs/llamacpp-binaries-for-colab with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DQN-Labs/llamacpp-binaries-for-colab
Run and chat with the model
lemonade run user.llamacpp-binaries-for-colab-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
| :: MIT license | |
| :: Copyright (C) 2024 Intel Corporation | |
| :: SPDX-License-Identifier: MIT | |
| set URL=%1 | |
| set COMPONENTS=%2 | |
| curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5 | |
| start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log | |
| del %TEMP%\webimage.exe | |
| if "%COMPONENTS%"=="" ( | |
| webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. | |
| ) else ( | |
| webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. | |
| ) | |
| set installer_exit_code=%ERRORLEVEL% | |
| rd /s/q "webimage_extracted" | |
| exit /b %installer_exit_code% | |