From 02845fb0d20030cdc57261ccbc6160b6ce76308f Mon Sep 17 00:00:00 2001 From: Sean <118865326+seanxuu@users.noreply.github.com> Date: Mon, 28 Aug 2023 09:25:41 +0800 Subject: [PATCH] Typo correction Typo correction --- auto_survey/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_survey/main.py b/auto_survey/main.py index b292114..db9ad07 100644 --- a/auto_survey/main.py +++ b/auto_survey/main.py @@ -76,8 +76,8 @@ def _generation_setup(title, template="Default", except Exception as e: domain_knowledge='' prompts = f"Title: {title}" - syetem_promot = "You are an assistant designed to propose necessary components of an survey papers. Your response should follow the JSON format." - components, usage = llm(systems=syetem_promot, prompts=prompts, return_json=True) + syetem_prompt = "You are an assistant designed to propose necessary components of an survey papers. Your response should follow the JSON format." + components, usage = llm(systems=syetem_prompt, prompts=prompts, return_json=True) log_usage(usage, "media") print(f"The paper information has been initialized. References are saved to {bibtex_path}.")