diff --git a/examples/configurations/phi-2.yaml b/examples/configurations/phi-2.yaml index c09aa6ce..8f193866 100644 --- a/examples/configurations/phi-2.yaml +++ b/examples/configurations/phi-2.yaml @@ -15,4 +15,11 @@ template: chat: &template | Instruct: {{.Input}} Output: - completion: *template \ No newline at end of file + completion: *template + +usage: | + To use this model, interact with the API (in another terminal) with curl for instance: + curl http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{ + "model": "phi-2", + "messages": [{"role": "user", "content": "How are you doing?", "temperature": 0.1}] + }'