When default_mode_endpoint has a value, it needs to become model_endpoint. (#452)

Co-authored-by: Oliver Smith <oliver.smith@superevilmegacorp.com>
This commit is contained in:
Oliver Smith
2023-11-15 01:18:23 -08:00
committed by GitHub
parent 6275a78222
commit a9b5a3d806

View File

@@ -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