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 "SteelStorage/Q2.5-MS-Mistoria-72b-v2" \
    --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": "SteelStorage/Q2.5-MS-Mistoria-72b-v2",
		"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 "SteelStorage/Q2.5-MS-Mistoria-72b-v2" \
        --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": "SteelStorage/Q2.5-MS-Mistoria-72b-v2",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Q2.5-MS-Mistoria-72b-v2

Now the cute anime girl has your attention

Creator: SteelSkull

About Mistoria-72b-v2:

Name Legend:
Q2.5 = Qwen 2.5
MS = Model Stock
72B = its 72B
v2 = its the second version
      

This model is my second attempt at a 72b model, as usual, my goal is to merge the robust storytelling of mutiple models while attempting to maintain intelligence.

Use qwen format

Quants: (List of badasses)

GGUF Quant:

- bartowski: Combined-GGUF

- mradermacher: GGUF // Imat-GGUF

Config:

MODEL_NAME = "Q2.5-MS-Mistoria-72b-v2"
base_model: Nexusflow/Athene-V2-Chat
merge_method: model_stock
dtype: bfloat16
models:
  - model: EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2
  - model: ZeusLabs/Chronos-Platinum-72B
  - model: shuttleai/shuttle-3

If you wish to support:

Downloads last month
21
Safetensors
Model size
73B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with SteelStorage/Q2.5-MS-Mistoria-72b-v2.

Model tree for SteelStorage/Q2.5-MS-Mistoria-72b-v2