openai-java
openai-java copied to clipboard
Gpt 4
I need curl code to use gpt 4 please , im in white list already.
i need organisation code! where could find it, i mean i already have a company
Not sure what you are asking. openai-java is the java toolkit for calling the OpenAI apis within a Java program. For calling the API without this toolkit including using CURL you can reference the documentation under their Developer section including examples.
https://platform.openai.com/docs/api-reference
You can also see the list of models to use here.
https://platform.openai.com/docs/models
POST https://api.openai.com/v1/chat/completions Authorization: Bearer sk-...... Content-Type: application/json
Body:
{
"model": "gpt-4",
"messages": [{"role": "user", "content": "Hello!"}]
}
Confirmed works in Curl and Postman.