org.devlive.sdk.openai.model.EditModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openai-java-sdk Show documentation
Show all versions of openai-java-sdk Show documentation
Provides an easy-to-use SDK for Java developers to interact with the APIs of open AI models.
package org.devlive.sdk.openai.model;
public enum EditModel
{
TEXT_DAVINCI_EDIT_001("text-davinci-edit-001"),
CODE_DAVINCI_EDIT_001("code-davinci-edit-001");
private final String name;
public String getName()
{
return name;
}
EditModel(String name)
{
this.name = name;
}
}