Instructions to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF", filename="Llama-SEA-LION-v3-70B-IT-Q2_K.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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-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": "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
- SGLang
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with Ollama:
ollama run hf.co/tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF to start chatting
- Pi
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
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": "tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
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 tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
- Lemonade
How to use tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF:Q2_K
Run and chat with the model
lemonade run user.aisingapore_Llama-SEA-LION-v3-70B-IT-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- Llama-SEA-LION-v3-70B-IT-Q3_K_L.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q3_K_S.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q4_0.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q4_K_M.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q4_K_S.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q5_0.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q5_K_M.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q5_K_S.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q6_K/Llama-SEA-LION-v3-70B-IT-Q6_K-00001-of-00002.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q6_K/Llama-SEA-LION-v3-70B-IT-Q6_K-00002-of-00002.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q8_0/Llama-SEA-LION-v3-70B-IT-Q8_0-00001-of-00003.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q8_0/Llama-SEA-LION-v3-70B-IT-Q8_0-00002-of-00003.gguf +0 -3
- Llama-SEA-LION-v3-70B-IT-Q8_0/Llama-SEA-LION-v3-70B-IT-Q8_0-00003-of-00003.gguf +0 -3
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a75cd05ccfa88fe622a530c47e1b19971a19de7b982e732b27eb037980ce9935
|
| 3 |
-
size 37140597440
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a0592a84ad5a82f2831b36ec604df0dc3998edb20468b68dab85a4b919f58d9f
|
| 3 |
-
size 30912056000
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:253c5871f2cb212c32b6eb441f91fe579c06049b07b011733c2eb21268111ae8
|
| 3 |
-
size 39969737408
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:72b7155328be9bea3554a7b40827f4d75b9e0ea14f4b81e929b0cf446a7c6b21
|
| 3 |
-
size 42520398528
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a0ceff6807152abce33097180eeae771e0fe46345b5caaefb61935cd80347b5d
|
| 3 |
-
size 40347224768
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:dbf8c1911878a3a9b7267315b3ea34a099af6dcd730c32926549e892e60877dd
|
| 3 |
-
size 48657451712
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d1e499744c1d3f3af4f8c0afa43d9d9e8f8f81aee4695a255c9d418703b91b4a
|
| 3 |
-
size 49949821632
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:291f24ae8eae25df156f3ac1c80bbe5f7a1adca7fdbd4fc50417dea51a936766
|
| 3 |
-
size 48657451712
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:246c2030594d2e49742ff39d7ea2cc749cf85b99bea27a34e6a8742107629a80
|
| 3 |
-
size 34847475424
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6a3cb7428253766ab7ebf4ae536546abec4c29412a5d6d3f0531522973b3f79d
|
| 3 |
-
size 23040672928
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:738d3c4f3a6b4cbb2150d3c3d2e6162ab85d366206cd497004594b630981eb75
|
| 3 |
-
size 34980015872
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3f18dbf2c0a0a5a26643291006d70cd9d11c746bf72714d3ba901b1d69312030
|
| 3 |
-
size 34949976384
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b5fccacdc360aafac8a0cffc7f94f4e3a959fbeb576e51ed50a1cf5db033b9e2
|
| 3 |
-
size 5045062560
|
|
|
|
|
|
|
|
|
|
|
|