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 "augmxnt/shisa-gamma-7b-v1" \
    --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": "augmxnt/shisa-gamma-7b-v1",
		"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 "augmxnt/shisa-gamma-7b-v1" \
        --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": "augmxnt/shisa-gamma-7b-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

shisa-gamma-7b-v1

For more information see our main Shisa 7B model

We applied a version of our fine-tune data set onto Japanese Stable LM Base Gamma 7B and it performed pretty well, just sharing since it might be of interest.

Check out our JA MT-Bench results.

Comparison vs shisa-7b-v1

Comparison vs other recently released JA models

Downloads last month
33,120
Safetensors
Model size
7B params
Tensor type
BF16
Β·
Inference Providers NEW
Input a message to start chatting with augmxnt/shisa-gamma-7b-v1.

Model tree for augmxnt/shisa-gamma-7b-v1

Finetuned
(3)
this model
Finetunes
1 model
Merges
6 models
Quantizations
6 models

Dataset used to train augmxnt/shisa-gamma-7b-v1

Spaces using augmxnt/shisa-gamma-7b-v1 9