How to use from
SGLangUse Docker images
docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "Inishds/function_calling-phi-3-mini-4k" \
--host 0.0.0.0 \
--port 30000# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Inishds/function_calling-phi-3-mini-4k",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
function_calling-phi-3-mini-4k
function_calling-phi-3-mini-4k is an SFT fine-tuned version of microsoft/Phi-3-mini-4k-instruct using a custom training dataset. This model was made with Phinetune
Process
- Learning Rate: 1.41e-05
- Maximum Sequence Length: 4096
- Dataset: Inishds/function_calling
- Split: train
π» Usage
!pip install -qU transformers
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
model = "Inishds/function_calling-phi-3-mini-4k"
tokenizer = AutoTokenizer.from_pretrained(model)
# Example prompt
prompt = "Your example prompt here"
# Generate a response
model = AutoModelForCausalLM.from_pretrained(model)
pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
outputs = pipeline(prompt, max_length=50, num_return_sequences=1)
print(outputs[0]["generated_text"])
- Downloads last month
- 3
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Inishds/function_calling-phi-3-mini-4k" \ --host 0.0.0.0 \ --port 30000# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Inishds/function_calling-phi-3-mini-4k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'