Results 123 comments of cryptoapebot

Instead or in addition to the code, can you run your java w/ the property to see if it makes any difference? ``` -Djava.net.useSystemProxies=true ``` I did find some useful...

Confirmed. ``` CompletionRequest(model=text-davinci-003, prompt=woodchucks?, maxTokens=500, temperature=0.7, topP=1.0, n=null, stream=true, logprobs=null, echo=false, stop=[ , Human:, AI:], presencePenalty=0.0, frequencyPenalty=0.0, bestOf=null, logitBias=null, user=null) Exception in thread "main" java.lang.RuntimeException: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'data': was...

It looks like the stream includes data and data: DONE, so the jackson parser is trying to parse a partial result.

just for fun, I set it to false and the call succeeded, so I don't think it's a problem w/ the actual value, just how it's handled in the response....

I thought #183 or #186 had a checkin w/ this feature. Take a look at those issues to see if it solves your problem.

Take your full first and second calls for chatMessages and run it through the tokenizer. It's not showing the correct error, but I suspect you are running up against the...

Can you filter on status return code?

You might be able to try the new Stream feature w/ the whisper model. I think it might have to be split out into a new completion though given the...

So it looks like the endpoint takes an audio, multipart file and then returns the text. That should be easy to handle by just calling the right endpoint which isn't...