fix example

This commit is contained in:
geekan 2024-02-20 15:35:55 +08:00
parent fdc00e8d9f
commit 54d06960ea

View file

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