Text Generation
Transformers
Safetensors
phi3
code
finance
conversational
custom_code
text-generation-inference
this AI model was based off phi-3 mini and trained on a subset of codenet
and this model uses a custom architecture to enhance reasoning and memorization :3
- Downloads last month
- 3
Model tree for moelanoby/phi3-mini-M2
Base model
microsoft/Phi-3-mini-4k-instruct
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "moelanoby/phi3-mini-M2"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "moelanoby/phi3-mini-M2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'