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())