Skip to content

Commit

Permalink
Removing some unnecessary details
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillatrev committed Dec 21, 2023
1 parent 4a97be6 commit c3bc536
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/ai/rev/speechtotext/models/NlpModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@

import com.google.gson.annotations.SerializedName;

/** GPT Model type. STANDARD (GPT 3.5) or PREMIUM (GPT 4) */
/** Supported model types for NLP tasks like summarization. */
public enum NlpModel {

/** gpt 3.5. This is the default value. */
@SerializedName("standard")
STANDARD("standard"),

/** gpt 4. */
@SerializedName("premium")
PREMIUM("premium");

Expand Down

0 comments on commit c3bc536

Please sign in to comment.