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 "Dans-Archive/Dans-QuestionableCocktail-2-13b" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Dans-Archive/Dans-QuestionableCocktail-2-13b",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
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 "Dans-Archive/Dans-QuestionableCocktail-2-13b" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Dans-Archive/Dans-QuestionableCocktail-2-13b",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Quick Links

This is my laziest model card to date, its a merge of about 70% Llama-2-chat, 15% Holodeck, and 15% Chronos.

My goals with this were to break induce some prose and novel structuring into Llama-2-chat without losing its magic. I think it worked? idk this probably wont be the last of this series.

Holodeck and Chronos were merged 50/50 into 'HoloChronos' then layer only merged with the following pattern into Llama-2-chat with 'HoloChronos' being the #2 model

[0.2, 0.2, 0.2, 0.2, 0.3, 0.4, 0.3, 0.2, 0.1, 0.3]

I recommend using the Llama-2-chat prompt format but model merges are unholy so YMMV.

Thank you to Gryphe for his merge script https://github.com/Gryphe/BlockMerge_Gradient/tree/main

Thank you to Mr. Seeker and Elinas for the Holodeck and ChronosV2 models respectively.

https://huggingface.co/KoboldAI/LLAMA2-13B-Holodeck-1

https://huggingface.co/elinas/chronos-13b-v2

Downloads last month
9
Inference Providers NEW