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 "djuna/MN-Chinofun-12B-4.1" \
    --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": "djuna/MN-Chinofun-12B-4.1",
		"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 "djuna/MN-Chinofun-12B-4.1" \
        --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": "djuna/MN-Chinofun-12B-4.1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

merge

This is a merge of pre-trained language models created using mergekit.

Merge Details

Merge Method

This model was merged using the SCE merge method using ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.3 as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: Nitral-AI/Wayfarer_Eris_Noctis-12B
  - model: spow12/ChatWaifu_v1.4
  - model: grimjim/magnum-twilight-12b
  - model: RozGrov/NemoDori-v0.2.2-12B-MN-ties
  - model: GalrionSoftworks/Canidori-12B-v1
merge_method: sce
base_model: ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.3
dtype: bfloat16
Downloads last month
16
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with djuna/MN-Chinofun-12B-4.1.

Model tree for djuna/MN-Chinofun-12B-4.1

Collection including djuna/MN-Chinofun-12B-4.1

Paper for djuna/MN-Chinofun-12B-4.1