An experimental release.
zerofata/GeneticLemonade-Unleashed qlora trained on a test dataset. Performance is improved from the original in my testing, but there are possibly (likely?) areas where the model will underperform which I am looking for feedback on.
This is a creative model intended to excel at character driven RP / ERP. It has not been tested or trained on adventure stories or any large amounts of creative writing.

Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "zerofata/L3.3-GeneticLemonade-Unleashed-v2.1-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-Unleashed-v2.1-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'