def build_graph()

in agent/react_agent.py [0:0]


def build_graph():
    tools = [
        think,
    ]
    agent = create_react_agent(
        ChatOpenAI(model="gpt-4o-mini"),
        tools,
        checkpointer=MemorySaver(),
        prompt=SystemMessage(build_prompt(tools)),
    )
    return agent