From a9b5a3d8063cb3efd417bd14ae35ee32a59ee708 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 15 Nov 2023 01:18:23 -0800 Subject: [PATCH] When default_mode_endpoint has a value, it needs to become model_endpoint. (#452) Co-authored-by: Oliver Smith --- memgpt/cli/cli_config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memgpt/cli/cli_config.py b/memgpt/cli/cli_config.py index 2433efb1..cd8d0811 100644 --- a/memgpt/cli/cli_config.py +++ b/memgpt/cli/cli_config.py @@ -89,6 +89,8 @@ def configure_llm_endpoint(config: MemGPTConfig): if "http://" not in model_endpoint and "https://" not in model_endpoint: typer.secho(f"Endpoint must be a valid address", fg=typer.colors.YELLOW) model_endpoint = None + else: + model_endpoint = default_model_endpoint assert model_endpoint, f"Environment variable OPENAI_API_BASE must be set." return model_endpoint_type, model_endpoint