How to use from
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 "Jongsim/Llama-3-MAAL-8B-Instruct-v0.1-8bpw-exl2" \
    --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": "Jongsim/Llama-3-MAAL-8B-Instruct-v0.1-8bpw-exl2",
		"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 "Jongsim/Llama-3-MAAL-8B-Instruct-v0.1-8bpw-exl2" \
        --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": "Jongsim/Llama-3-MAAL-8B-Instruct-v0.1-8bpw-exl2",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

original model Llama-3-MAAL-8B-Instruct-v0.1

original model git https://github.com/maum-ai

EXL2 quants of Llama3_MAAL-8B-Instruct-v0.1

Located in the main branch

  • 8.0 bits per weight
  • measurement.json

์›๋ณธ ๋ชจ๋ธ Llama-3-MAAL-8B-Instruct-v0.1

์›๋ณธ ๋ชจ๋ธ ํšŒ์‚ฌ Git https://github.com/maum-ai

Llama3_MAAL-8B-Instruct-v0.1 ๋ชจ๋ธ EXL2 ์–‘์žํ™”

๋ฉ”์ธ branch์— ์žˆ๋Š” ํŒŒ์ผ

  • 8.0 bits per weight
  • measurement.json
Downloads last month
1
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support