We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a97be6 commit c3bc536Copy full SHA for c3bc536
src/main/java/ai/rev/speechtotext/models/NlpModel.java
@@ -2,14 +2,11 @@
2
3
import com.google.gson.annotations.SerializedName;
4
5
-/** GPT Model type. STANDARD (GPT 3.5) or PREMIUM (GPT 4) */
+/** Supported model types for NLP tasks like summarization. */
6
public enum NlpModel {
7
8
- /** gpt 3.5. This is the default value. */
9
@SerializedName("standard")
10
STANDARD("standard"),
11
-
12
- /** gpt 4. */
13
@SerializedName("premium")
14
PREMIUM("premium");
15
0 commit comments