Instructions to use Vortex5/MS3.2-24B-Fiery-Lynx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vortex5/MS3.2-24B-Fiery-Lynx with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vortex5/MS3.2-24B-Fiery-Lynx") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Vortex5/MS3.2-24B-Fiery-Lynx") model = AutoModelForCausalLM.from_pretrained("Vortex5/MS3.2-24B-Fiery-Lynx") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Vortex5/MS3.2-24B-Fiery-Lynx with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Vortex5/MS3.2-24B-Fiery-Lynx" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/MS3.2-24B-Fiery-Lynx", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Vortex5/MS3.2-24B-Fiery-Lynx
- SGLang
How to use Vortex5/MS3.2-24B-Fiery-Lynx with 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 "Vortex5/MS3.2-24B-Fiery-Lynx" \ --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": "Vortex5/MS3.2-24B-Fiery-Lynx", "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 "Vortex5/MS3.2-24B-Fiery-Lynx" \ --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": "Vortex5/MS3.2-24B-Fiery-Lynx", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Vortex5/MS3.2-24B-Fiery-Lynx with Docker Model Runner:
docker model run hf.co/Vortex5/MS3.2-24B-Fiery-Lynx
This one is very good
I've tried several of your merges and I find this one to be really good for my purposes - which is mostly fantasy RP. I've also tried the newer Solar Skies merge, but I find it can fall into repetition much more easily. I haven't played with the settings much, but I've been running this one in Silly Tavern with Temp 0.72, Top P 0.9, Typical P 1, Min P 0.14, Top A 0, TFS 1, Top nsigma 0, Rep Penalty 1.05, Rep Pen Range 128, Rep Pen Slope 0.82. I think I like it more than Codex, which was my previous favorite.
Thank you for the feedback, I am glad you liked it!