Results 123 comments of cryptoapebot

I know this isn't that helpful, but in theory the gravitee proxy should just work as it sounds like that is their core specialty. For your other two questions, take...

Java supports lamdas, but I'm guessing you are requesting a feature to access embeddings from the endpoint: https://api.openai.com/v2/embeddings

I'm just sort of going off the cuff here. Create a java object w/ the fields in the CSV. ``` class FoodReview { Integer index; String ProductId; String UserId; Integer...

Not sure if this will help, but I put mine in env vars (.bashrc) export OPENAI_TOKEN="sk-K..." export OPENAI_API_KEY="sk-K..."

That's actually a great point. BTW, w/ the launch of chat.openai.com ("ChatGPT") I've been getting a ton of intermittent 404 and 503's even with valid tokens and software which are...

Just set the timeout to a higher value when you declare your service. ``` /** * Creates a new OpenAiService that wraps OpenAiApi * * @param token OpenAi token string...

You either change the name of the model to reference the fine tuned name you added the training to or you include it in the previous answer in the prompt.

Just FYI, OpenAI hasn't released the ChatGPT APIs yet, so the features in the ChatGPT beta UI they host might not be available to API builders yet. The best you...

v1 URL looks correct. @POST("/v1/fine-tunes") Single createFineTune(@Body FineTuneRequest request); Will test this when I get a chance. Can you post a couple of lines of your jsonl file please? I...