Model Card for Model ID
A qlora SFT of starcoder2 15B on codefeedback dataset. This is an open code interpreter version of starcoder2.
Model Details
Model Description
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
- **Developed by:TokenBender - https://twitter.com/4evaBehindSOTA
- Downloads last month
- 9
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "TokenBender/starcoder2_15B_OCI"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TokenBender/starcoder2_15B_OCI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'