openai-java icon indicating copy to clipboard operation
openai-java copied to clipboard

Gpt 4

Open ahmedaa6122 opened this issue 2 years ago • 2 comments

I need curl code to use gpt 4 please , im in white list already.

ahmedaa6122 avatar Mar 18 '23 19:03 ahmedaa6122

i need organisation code! where could find it, i mean i already have a company

a-rasputine avatar Mar 19 '23 16:03 a-rasputine

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

cryptoapebot avatar Mar 19 '23 16:03 cryptoapebot

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.

cryptoapebot avatar Mar 28 '23 18:03 cryptoapebot