Text Generation
Transformers
PyTorch
Safetensors
mistral
mix
conversational
text-generation-inference
̶F̶u̶l̶l̶ ̶m̶o̶d̶e̶l̶ ̶c̶a̶r̶d̶ ̶s̶o̶o̶n̶.̶ ̶E̶a̶r̶l̶y̶ ̶r̶e̶l̶e̶a̶s̶e̶;̶
Spherical Hexa-Merge of hand-picked Mistrel-7B models.
This is the successor to Naberius-7B, building on its findings.
[11 Dec 2023 UPDATE] Original compute resource for experiment are inaccessible. Long story;
Stanford Alpaca format works best for instruct test driving this engima.
- Downloads last month
- 14
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "CalderaAI/Hexoteric-7B"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CalderaAI/Hexoteric-7B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'