Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.02 KB

stome-agent.md

File metadata and controls

27 lines (16 loc) · 1.02 KB

Storm Agent

[storm.ipynb]에서는 Assisting in Writing Wikipedia-like Articles From Scratch with Large Language Models을 이용하여, 풍부한 기사를 생성(richer article generation)을 위한 "outline-driven RAG"의 아이디어를 확장합니다.

Storm의 Overview는 아래와 같습니다.

image

Graph의 구현형태는 아래와 같습니다.

builder = StateGraph(InterviewState)

builder.add_node("ask_question", generate_question)
builder.add_node("answer_question", gen_answer)
builder.add_conditional_edges("answer_question", route_messages)
builder.add_edge("ask_question", "answer_question")

builder.set_entry_point("ask_question")
interview_graph = builder.compile().with_config(run_name="Conduct Interviews")

이를 도식화하면 아래와 같습니다.

image