Results 123 comments of cryptoapebot

Good catch. In the docs it only had listed -002, so that makes sense.

"Obtain the conversationId through https://api.openai.com/v1/conversations, and then pass the conversationId to completion every time a conversation is initiated. This enables continuous contextual dialogue." Clever!

I did find a ShareGPT Chrome plugin. https://techcrunch.com/2022/12/08/sharegpt-lets-you-easily-share-your-chatgpt-conversations/ It lets you create a link to any conversation. It does appear to use the conversations endpoint and what I assume is...

Can you please post results for: ``` java --version gradle --version ``` Also, when you create your service, add a Duration.ofSeconds(50); // or whatever number you want. There was a...

I think you'll find if you upgrade your JDK to 1.8.0_202 (or higher) it'll fix your cert problem. I'd strongly recommend using a JDK 11 through JDK 19 though as...

This should be well covered in the OpenAI documentation not specific to this project. https://platform.openai.com/tokenizer By way of example: ``` Prices are per 1,000 tokens. You can think of tokens...

Also, OpenAI have a tokenizer tool. https://platform.openai.com/tokenizer Inspecting the page looks like they call cdn.openai.com, but I can't determine the exact call from the app.

How did you implement this?

In the example above, what call did you make to the API and using what parameters?

I didn't follow everything, but two notes. 1) Chat uses the chat completions endpoint, not the completions one. ``` https://api.openai.com/v1/chat/completions ``` 2) The chat completions API from OpenAI currently does...