From 8fb32c1c7c6f1d2249cb6a4bc15881f1de619ec6 Mon Sep 17 00:00:00 2001 From: Wilson Choi <734468+wilsonkichoi@users.noreply.github.com> Date: Sat, 16 May 2026 11:54:23 -0700 Subject: [PATCH] Update quickstart with Return Answers node Added a Return Answers node to the pipeline steps. --- docs/quickstart.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 2baf04c..30ea05e 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -39,10 +39,11 @@ Every pipeline starts with a **source node**. For a simple chat pipeline: 1. Add a **Chat** source node — this provides an interactive conversational interface. 2. Add an **LLM** node — choose your preferred provider (OpenAI, Anthropic, Google, etc.) and configure your API key. -3. Connect the Chat source's output lane to the LLM's input lane. -4. The LLM's response will be routed back through the chat interface automatically. +3. Add a **Return Answers** node - this process the answer returned by the LLM. +4. Connect the Chat source's output lane to the LLM's input lane. +5. The LLM's response will be routed back through the chat interface automatically. -Your pipeline should look like this: `Chat → LLM`. +Your pipeline should look like this: `Chat → LLM → Answers`. ## 5. Run Your Pipeline