Wasn't intending to release another model (so soon at least), but I was testing out some new dataset ideas and thought this model came out pretty nice.
zerofata/GeneticLemonade-Final SFT QLora finetune.
This is an uncensored creative model intended to excel at character driven RP / ERP.
This model is designed to provide longer, narrative heavy responses where characters are portrayed accurately and proactively.
Compared to Unleashed v3, this model has significantly reduced positivity bias and arguably a nicer writing style. The tradeoff is it swipe heavy, making a few more logical errors and can be a bit too concise at times.

Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "zerofata/L3.3-GeneticLemonade-Final-v2-70B"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zerofata/L3.3-GeneticLemonade-Final-v2-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'