From e823fa7dace54d215a2fd89cc9327d09cb8bbc0e Mon Sep 17 00:00:00 2001 From: Jakub N Date: Mon, 22 Jan 2024 20:01:53 +0100 Subject: Update README.md Added example POST request to docs --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 876779f0..a4365e09 100644 --- a/README.md +++ b/README.md @@ -427,6 +427,26 @@ if __name__ == "__main__": main() ``` +## API usage (POST) +#### Chat completions +Send the POST request to /v1/chat/completions with body containing the `model` method. This example uses python with requests library: +```python +import requests +url = "http://localhost:1337/v1/chat/completions" +body = { + "model": "gpt-3.5-turbo-16k", + "stream": False, + "messages": [ + {"role": "assistant", "content": "What can you do?"} + ] +} +json_response = requests.post(url, json=body).json().get('choices', []) + +for choice in json_response: + print(choice.get('message', {}).get('content', '')) +``` + + ## 🚀 Providers and Models ### GPT-4 -- cgit v1.2.3