Skip to content

Commit

Permalink
update model aliases for new turbo models
Browse files Browse the repository at this point in the history
  • Loading branch information
svilupp committed Nov 7, 2023
1 parent 507e613 commit e7463f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PromptingTools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const MODEL_COSTS = Dict("gpt-3.5-turbo" => (0.0015, 0.002),
"text-embedding-ada-002" => (0.001, 0.0))
const MODEL_ALIASES = Dict("gpt3" => "gpt-3.5-turbo",
"gpt4" => "gpt-4",
"4t" => "gpt-4-1106-preview", # 4t is for "4 turbo"
"3t" => "gpt-3.5-turbo-1106", # 3t is for "3 turbo"
"gpt4t" => "gpt-4-1106-preview", # 4t is for "4 turbo"
"gpt3t" => "gpt-3.5-turbo-1106", # 3t is for "3 turbo"
"ada" => "text-embedding-ada-002")
# below is defined in llm_interace.jl !
# const PROMPT_SCHEMA = OpenAISchema()
Expand Down

0 comments on commit e7463f1

Please sign in to comment.