ee.carlrobert.llm.client.codegpt.PricingPlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
package ee.carlrobert.llm.client.codegpt;
public enum PricingPlan {
ANONYMOUS("Anonymous"), FREE("Free"), INDIVIDUAL("Individual");
private final String label;
PricingPlan(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
}