Results 123 comments of cryptoapebot

I (might) still be on 0.6, but this code works for me. retrofit-1.9.0.jar okhttp-4.10.0.jar retrofit2-rxjava2-adapter-1.0.0.jar rxjava-2.2.21.jar I had very similar problems which the workaround was exact jar versions. ``` public...

Also, FYI. OpenAI has deprecated engine-based endpoints in favor of model-based endpoints. For example, instead of using v1/engines/{engine_id}/completions, switch to v1/completions and specify the model in the CompletionRequest. The code...

Curious. ``` buildscript { repositories { mavenCentral() } dependencies { classpath 'com.vanniktech:gradle-maven-publish-plugin:0.19.0' } } allprojects { repositories { mavenCentral() } plugins.withId("com.vanniktech.maven.publish") { mavenPublish { sonatypeHost = "S01" } } }...

And the API one. ``` apply plugin: 'java-library' apply plugin: "com.vanniktech.maven.publish" dependencies { compileOnly 'org.projectlombok:lombok:1.18.22' annotationProcessor 'org.projectlombok:lombok:1.18.22' } compileJava { sourceCompatibility = '1.8' targetCompatibility = '1.8' } ```

One other check. ``` ------------------------------------------------------------ Gradle 7.4.2 ------------------------------------------------------------ Build time: 2022-03-31 15:25:29 UTC Revision: 540473b8118064efcc264694cbcaa4b677f61041 Kotlin: 1.5.31 Groovy: 3.0.9 Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021 JVM:...

I'm just being silly here: ``` prompt = "Write a script in bash that gives the current time in GMT\n"; ```

Can you print your prompt out? I want to make sure you don't have to quote it. ``` String question = "\" + params[0] + "\""; ```

Let me experiment. This from the code: * Whether to stream back partial progress. * If set, tokens will be sent as data-only server-sent events as they become available, *...

Some previous discussion and ideas on the subject. https://github.com/openai/openai-node/issues/18