diff --git a/gptme/prompts.py b/gptme/prompts.py index 2ef210b7..51030116 100644 --- a/gptme/prompts.py +++ b/gptme/prompts.py @@ -28,7 +28,7 @@ def get_prompt(prompt: PromptType | str = "full", interactive: bool = True) -> M elif prompt == "short": msgs = prompt_short(interactive) else: - return Message("system", prompt) + msgs = [Message("system", prompt)] # combine all the system prompt messages into one, # also hide them and pin them to the top