Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add gpt-4-turbo #349

Merged
merged 3 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions memgpt/cli/cli_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def configure():
if use_openai or use_azure:
model_options = []
if use_openai:
model_options += ["gpt-3.5-turbo", "gpt-3.5", "gpt-4"]
model_options += ["gpt-3.5-turbo", "gpt-4", "gpt-4-1106-preview"]
default_model = questionary.select(
"Select default model (recommended: gpt-4):", choices=["gpt-3.5-turbo", "gpt-3.5", "gpt-4"], default="gpt-4"
"Select default model (recommended: gpt-4):", choices=["gpt-3.5-turbo", "gpt-4", "gpt-4-1106-preview"], default="gpt-4"
cpacker marked this conversation as resolved.
Show resolved Hide resolved
).ask()
else:
default_model = "local" # TODO: figure out if this is ok? this is for local endpoint
Expand Down
4 changes: 4 additions & 0 deletions memgpt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@

model_choices = [
questionary.Choice("gpt-4"),
questionary.Choice(
"gpt-4-turbo (developer preview)",
value="gpt-4-1106-preview",
),
questionary.Choice(
"gpt-3.5-turbo (experimental! function-calling performance is not quite at the level of gpt-4 yet)",
cpacker marked this conversation as resolved.
Show resolved Hide resolved
value="gpt-3.5-turbo",
Expand Down
Loading