From 9a8f65853daaf6cda0b1cb0fae61024924d884aa Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Sat, 1 Jun 2024 18:11:15 +0200 Subject: [PATCH] fixed story writer --- lollms/functions/story_writing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lollms/functions/story_writing.py b/lollms/functions/story_writing.py index 0d05292..10bd0bc 100644 --- a/lollms/functions/story_writing.py +++ b/lollms/functions/story_writing.py @@ -67,7 +67,7 @@ def start_writing_story(prompt_ideas: str, llm: Any, story_file_path: str) -> st new_section = write_story_section( llm=llm, story_file_path=story_file_path, - story_plan=plan_json_str, + story_plan=story_plan, current_section=section_description, prompt_ideas=prompt_ideas )