mirror of
https://github.com/Hopiu/llm.git
synced 2026-04-08 07:20:58 +00:00
parent
5e21195e93
commit
b12e28c4ec
1 changed files with 8 additions and 1 deletions
|
|
@ -20,7 +20,14 @@ warnings.simplefilter("ignore", ResourceWarning)
|
|||
|
||||
DEFAULT_MODEL = "gpt-3.5-turbo"
|
||||
|
||||
MODEL_ALIASES = {"4": "gpt-4", "gpt4": "gpt-4", "chatgpt": "gpt-3.5-turbo"}
|
||||
MODEL_ALIASES = {
|
||||
"4": "gpt-4",
|
||||
"gpt4": "gpt-4",
|
||||
"chatgpt": "gpt-3.5-turbo",
|
||||
"3.5": "gpt-3.5-turbo",
|
||||
"chatgpt-16k": "gpt-3.5-turbo-16k",
|
||||
"3.5-16k": "gpt-3.5-turbo-16k",
|
||||
}
|
||||
|
||||
DEFAULT_TEMPLATE = "prompt: "
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue