From 54d06960ea3433ffdeb7d282c6d500959aa54b64 Mon Sep 17 00:00:00 2001 From: geekan Date: Tue, 20 Feb 2024 15:35:55 +0800 Subject: [PATCH] fix example --- examples/write_novel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/write_novel.py b/examples/write_novel.py index 03daf1f0c..e92d94acf 100644 --- a/examples/write_novel.py +++ b/examples/write_novel.py @@ -54,7 +54,7 @@ async def generate_novel(): chap_node = await ActionNode.from_pydantic(Chapters).fill( context=f"### instruction\n{instruction}\n### novel\n{novel_node.content}", llm=LLM() ) - print(chap_node.content) + print(chap_node.instruct_content) asyncio.run(generate_novel())