OpenAI-J/example/build.gradle
Theo Kanning b38f8681b1 Add OpenAiService and OpenAiApiExample
Added the ability to get all available engines, and added a example class to test it.
2020-09-14 19:22:46 -05:00

10 lines
168 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
application {
mainClassName = 'example.OpenAiApiExample'
}
dependencies {
implementation project(":openai")
}