Skip to content

Commit

Permalink
chore - refactor add doc
Browse files Browse the repository at this point in the history
  • Loading branch information
hanrw committed Apr 6, 2024
1 parent 1fae6f2 commit e8f6b45
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,16 @@ value class Model(val value: String) {
val GPT_3_5_TURBO = Model("gpt-3.5-turbo")
val GPT_3_5_TURBO_0125 = Model("gpt-3.5-turbo-0125")
val GPT_4 = Model("gpt-4")

/**
* GPT-4 Turbo
* The latest GPT-4 model intended to reduce cases of “laziness” where the model doesn’t complete a task. Returns a maximum of 4,096 output tokens.
*/
val GPT_4_TURBO_PREVIEW = Model("gpt-4-0125-preview")

/**
* Currently points to gpt-4-0125-preview.
*/
val GPT_4_TURBO = Model("gpt-4-turbo-preview")
val GPT4_VISION_PREVIEW = Model("gpt-4-vision-preview")
val DALL_E_2 = Model("dall-e-2")
Expand Down

0 comments on commit e8f6b45

Please sign in to comment.