{"workflow":{"id":13250,"name":"Collect leads with a conversational GPT-4.1 chatbot and Google Sheets","views":344,"recentViews":1,"totalViews":344,"createdAt":"2026-02-07T11:23:43.192Z","description":"## Description\n\nA natural conversational AI chatbot that collects lead information (Name, Phone, Email, Message) one question at a time without feeling like a form. Uses session-based memory to track conversations, intelligently asks only for missing details, and saves complete leads to Google Sheets automatically.\n\n---\n\n## What this workflow does\n\nThis workflow creates a human-like booking assistant that gathers lead information through natural conversation instead of traditional forms. The AI chatbot asks ONE question at a time, remembers previous answers using session memory, never repeats questions, and only saves data to Google Sheets when all four required fields (Name, Phone Number, Email Address, User Message) are confidently collected. The conversation feels natural and friendly—users engage with the bot as if chatting with a real person, dramatically improving completion rates compared to static forms.\n\nPerfect for booking systems, consultation requests, event registrations, customer support intake, or any scenario where you need to collect contact information without friction.\n\n---\n\n## Key features\n\n**One question at a time:** The AI never overwhelms users with multiple questions. It asks for Name, then Phone, then Email, then Message—sequentially and naturally, based on what's still missing from the conversation.\n\n**Session-based memory:** Uses timestamp-based session tracking so the AI remembers the entire conversation context. If a user says \"My name is John\" in message 1, the AI won't ask for the name again in message 5.\n\n**Smart field detection:** The AI automatically detects which details have been collected and which are still missing. It adapts the conversation flow dynamically instead of following a rigid script.\n\n**Natural language processing:** Handles variations in user input (\"John Doe\", \"I'm John\", \"Call me John\") and validates data intelligently before saving.\n\n**Complete data guarantee:** Only writes to Google Sheets when all 4 required fields are present. No partial or incomplete leads clutter your tracking sheet.\n\n**Webhook-based integration:** Works with any website, app, or platform that can send HTTP requests. Integrate with chatbots, contact forms, booking widgets, or custom applications.\n\n**Instant responses:** Real-time conversation with sub-second response times. Users get immediate replies, maintaining engagement throughout the lead collection process.\n\n---\n\n## How it works\n\n### 1. User initiates conversation via webhook\nA user sends a message through your website chat widget, contact form, or booking interface. This triggers a webhook that passes the message along with query parameters (name, email, phone, message, timestamp, source) to n8n.\n\n### 2. AI Agent analyzes conversation state\nThe Conversational Lead Collection Agent receives the user's message and checks the current state:\n- Which fields are already collected (from previous messages in this session)?\n- Which fields are still missing?\n- What should be asked next?\n\nThe AI uses the system prompt to understand its role as a booking assistant for \"Spark Writers' Retreat\" and follows strict conversation rules.\n\n### 3. Session memory tracks context\nThe Buffer Window Memory node uses the timestamp from the webhook as a unique session ID. This allows the AI to:\n- Remember all previous messages in this conversation\n- Access previously collected information (name, phone, email)\n- Never ask the same question twice\n- Maintain conversation continuity even if the user takes breaks\n\n### 4. One question at a time\nBased on what's missing, the AI asks exactly ONE question in natural, friendly language:\n- If Name is missing → \"Hi! What's your name?\"\n- If Phone is missing → \"Great! And what's your phone number?\"\n- If Email is missing → \"Perfect! Could you share your email address?\"\n- If Message is missing → \"Thanks! How can I help you today?\"\n\nThe AI adapts its language based on previous conversation flow—it doesn't sound robotic or repetitive.\n\n### 5. Data validation and collection\nAs the user responds, the AI:\n- Validates input (checks if phone number looks valid, email has @ symbol, etc.)\n- Extracts the information from natural language responses\n- Stores it temporarily in session memory\n- Continues asking until all 4 fields are complete\n\nIf the user provides unclear input, the AI politely asks again: \"I didn't quite catch that. Could you share your phone number?\"\n\n### 6. Save to Google Sheets (when complete)\n**Critical rule:** The AI only uses the Google Sheets tool AFTER all four details are confidently collected. This prevents partial or incomplete leads from cluttering your database.\n\nWhen all fields are present, the AI:\n- Writes exactly ONE row to Google Sheets\n- Maps data: Name → Name, Phone → Phone No., Email → Email, Message → Message\n- Uses Timestamp as the unique identifier (matching column)\n- Updates existing rows if the same timestamp appears again (prevents duplicates)\n\n### 7. Confirmation message\nAfter successfully saving, the AI sends a polite thank you:\n\n*\"Thank you! 🙏 We've received your details and our team will get back to you shortly.\"*\n\nThe AI never mentions Google Sheets, tools, backend systems, or automation—it maintains the illusion of human conversation.\n\n### 8. Response delivery\nThe final AI response is sent back to the user via the webhook response. Your website or app displays this message in the chat interface, completing the conversation loop.\n\n---\n\n## Setup requirements\n\n**Tools you'll need:**\n\n- Active n8n instance (self-hosted or n8n Cloud)\n- Google Sheets with OAuth access for lead storage\n- OpenAI API key (GPT-4.1-mini access)\n- Website or app with chat interface (or any platform that can send webhooks)\n\n**Estimated setup time:** 15–20 minutes\n\n---\n\n## Configuration steps\n\n### 1. Connect Google Sheets\n- In n8n: **Credentials → Add credential → Google Sheets OAuth2 API**\n- Complete OAuth authentication\n- Create a Google Sheet for lead tracking with these columns:\n  - **Timestamp** (unique session identifier)\n  - **Name**\n  - **Phone No.**\n  - **Email**\n  - **Message**\n- Open **\"Save Lead to Google Sheets\"** node\n- Select your Google Sheet and the correct sheet tab\n- Verify column mapping matches your sheet structure\n\n### 2. Add OpenAI API credentials\n- Get API key: https://platform.openai.com/api-keys\n- In n8n: **Credentials → Add credential → OpenAI API**\n- Paste your API key\n- Open **\"OpenAI GPT-4.1 Mini Language Model\"** node\n- Select your OpenAI credential\n- Ensure model is set to **gpt-4.1-mini**\n\n### 3. Copy webhook URL\n- Open **\"Receive User Message via Webhook\"** node\n- Copy the **Webhook URL** (format: `https://your-n8n.cloud/webhook/[webhook-id]`)\n- This is the endpoint your website or app will send messages to\n\n### 4. Integrate with your chat interface\nYou need to send HTTP POST/GET requests to the webhook URL with these query parameters:\n\n```\nGET https://your-n8n.cloud/webhook/[id]?name=[name]&email=[email]&phone=[phone]&message=[user_message]&timestamp=[unique_timestamp]&source=[source]\n```\n\n**Query parameter details:**\n- `name`: User's name (empty string if not yet collected)\n- `email`: User's email (empty string if not yet collected)\n- `phone`: User's phone number (empty string if not yet collected)\n- `message`: Current user message (required)\n- `timestamp`: Unique session ID (use ISO timestamp or UUID)\n- `source`: Source identifier (e.g., \"website_chat\", \"booking_form\")\n\n**Example integration (JavaScript):**\n```javascript\nconst sessionId = new Date().toISOString();\nconst userMessage = \"Hi, I want to book a retreat\";\n\nfetch(`https://your-n8n.cloud/webhook/[id]?message=${encodeURIComponent(userMessage)}&timestamp=${sessionId}&name=&email=&phone=&source=website_chat`)\n  .then(res =&gt; res.json())\n  .then(data =&gt; {\n    // Display AI response in your chat UI\n    console.log(data.output);\n  });\n```\n\n### 5. Customize the AI assistant\nOpen **\"Conversational Lead Collection Agent\"** node and edit the system message to:\n- Change the business name (currently \"Spark Writers' Retreat\")\n- Modify conversation tone (formal vs. casual)\n- Adjust the fields being collected\n- Change the final thank you message\n\n### 6. Test the workflow\n- Activate the workflow (toggle to **Active** at the top)\n- Send a test message to the webhook URL\n- Verify the AI responds appropriately\n- Continue the conversation by sending follow-up messages with the same timestamp\n- Check that:\n  - AI asks for missing fields only\n  - Session memory persists across messages\n  - Lead saves to Google Sheets when all 4 fields are collected\n  - Thank you message appears after saving\n\n---\n\n## Use cases\n\n**Booking and reservations:** Hotels, retreat centers, event venues, or appointment-based businesses collect guest details conversationally instead of long booking forms. Higher completion rates mean more confirmed bookings.\n\n**Lead generation for services:** Agencies, consultants, coaches, or freelancers capture qualified leads through natural conversation. Users are more likely to complete the process when it feels like chatting instead of form-filling.\n\n**Customer support intake:** Support teams collect issue details, contact information, and problem descriptions through chat before routing to the right agent. All data automatically logged in Google Sheets for ticketing.\n\n**Event registration:** Conference organizers, workshop hosts, or webinar providers gather attendee information without friction. The conversational approach encourages sign-ups even from mobile users who hate forms.\n\n**Sales qualification:** Sales teams use the chatbot to qualify leads by collecting basic information and understanding requirements before human handoff. Complete context stored in Google Sheets for CRM integration.\n\n**Consultation requests:** Professional services (legal, medical, financial) collect client details and initial consultation requests through friendly conversation, reducing no-show rates by building rapport early.\n\n---\n\n## Customization options\n\n### Change collected fields\nOpen **\"Conversational Lead Collection Agent\"** node and modify the system message:\n- Add new fields (e.g., Company Name, Budget, Preferred Date)\n- Remove optional fields (e.g., make Message optional)\n- Update the field names and data mapping\n\nThen update the Google Sheets node to include the new columns.\n\n### Adjust conversation tone\nIn the system message, change conversation style:\n- **Formal:** \"May I please have your full name?\"\n- **Casual:** \"What's your name?\"\n- **Friendly:** \"Hey! What should I call you?\"\n\n### Add validation rules\nEnhance the system prompt with specific validation:\n- Phone format (e.g., 10 digits, US format)\n- Email domain restrictions (e.g., only business emails)\n- Name length requirements\n- Message minimum word count\n\n### Connect to CRM or email\nAfter **\"Save Lead to Google Sheets\"** node, add:\n- **HTTP Request node** to send data to your CRM API\n- **Email node** to notify sales team of new leads\n- **Slack/Discord node** for real-time team alerts\n- **Webhook node** to trigger other workflows\n\n### Multi-language support\nModify the system prompt to respond in the user's language:\n- Add language detection logic\n- Translate questions and responses\n- Update thank you message for each language\n\n### Add conversation analytics\nInsert a **Set node** before saving to track:\n- Number of messages per lead\n- Time to completion\n- Drop-off points\n- Source performance\n\n---\n\n## Troubleshooting\n\n### AI repeats questions already answered\n- **Memory not persisting:** Verify the **\"Session Memory with Timestamp\"** node is using the correct timestamp from the webhook query params.\n- **Timestamp changing:** Ensure your chat interface sends the SAME timestamp for all messages in one conversation. Generate it once and reuse it.\n- **Memory window size:** Increase the buffer window size in the memory node if conversations are very long.\n\n### Leads not saving to Google Sheets\n- **Partial data:** The AI only saves when all 4 fields are collected. Check your test conversation actually provided all required information.\n- **OAuth expired:** Re-authenticate Google Sheets credentials.\n- **Sheet permissions:** Verify the connected Google account has edit access to the sheet.\n- **Column names mismatch:** Ensure sheet column names exactly match the mapping in the Google Sheets node (case-sensitive).\n\n### AI saves incomplete data\n- **System prompt not followed:** Review the \"Tool usage (VERY IMPORTANT)\" section in the system message. Ensure it clearly states to only use Google Sheets after all fields are collected.\n- **Validation too lenient:** The AI might be guessing missing fields. Strengthen validation rules in the system prompt.\n\n### Webhook not receiving messages\n- **URL incorrect:** Double-check the webhook URL in your integration code matches the n8n webhook URL exactly.\n- **CORS issues:** If calling from a browser, ensure n8n allows cross-origin requests or use server-side integration.\n- **Query params missing:** Verify all required parameters (message, timestamp) are included in the request.\n\n### AI responses too slow\n- **OpenAI API latency:** GPT-4.1-mini typically responds in 1-3 seconds. If slower, check OpenAI API status.\n- **Network delays:** Verify n8n instance has good connectivity.\n- **Memory lookup slow:** Reduce buffer window size if storing hundreds of messages.\n\n### Session memory not working\n- **Timestamp format inconsistent:** Use ISO format (e.g., 2026-01-28T14:38:23.720Z) and ensure it's identical across messages.\n- **Memory node misconfigured:** Check the session key expression in **\"Session Memory with Timestamp\"** node references the correct webhook query param.\n\n---\n\n## Resources\n\n- [n8n documentation](https://docs.n8n.io/)\n- [OpenAI GPT-4 API](https://platform.openai.com/docs/models/gpt-4)\n- [Google Sheets API](https://developers.google.com/sheets/api)\n- [n8n Webhook node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/)\n- [n8n AI Agent](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n- [Buffer Window Memory](https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/)\n\n---\n\n## Support\n\nNeed help or custom development?\n\n📧 Email: [info@incrementors.com](info@incrementors.com) \n🌐 Website: [https://www.incrementors.com/](https://www.incrementors.com/)","workflow":{"meta":{"instanceId":"bc8ca75c203589705ae2e446cad7181d6f2a7cc1766f958ef9f34810e53b8cb2"},"nodes":[{"id":"42d8a3f9-abdf-405c-83f0-d0e8d9751e5e","name":"Receive User Message via Webhook","type":"n8n-nodes-base.webhook","position":[64,-16],"webhookId":"ff8b6142-d902-41ca-a666-a9e734e8ef14","parameters":{"path":"ff8b6142-d902-41ca-a666-a9e734e8ef14","options":{}},"typeVersion":2.1},{"id":"f097a9a1-0232-453c-95e8-43ee1e71d018","name":"Conversational Lead Collection Agent","type":"@n8n/n8n-nodes-langchain.agent","position":[384,-16],"parameters":{"text":"=## User Message\n{{ $json.query.message }}","options":{"systemMessage":"=You are a conversational booking assistant for Spark Writers' Retreat.\n\nYour responsibility is to chat naturally with the user and collect these four details:\n1. Name\n2. Phone number\n3. Email address\n4. User message / requirement\n\nConversation rules:\n- Ask only ONE question at a time.\n- Never ask for information that is already collected.\n- If the user gives unclear or invalid input, politely ask again.\n- Keep replies short and friendly.\n- Do not sound like a form or bot.\n\nFlow logic:\n- If Name is missing → ask for name.\n- If Phone number is missing → ask for phone number.\n- If Email is missing → ask for email address.\n- If Message is missing → ask how you can help.\n\nTool usage (VERY IMPORTANT):\n- Only use the Google Sheets tool AFTER all four details are confidently collected.\n- Do NOT write to the sheet if any field is missing.\n- Write exactly ONE row per user conversation.\n\nData mapping:\n- Name → Name\n- Phone number → Phone_No_\n- Email → Email\n- User message → Message\n\nAfter successfully writing to the Google Sheet:\n- Thank the user politely.\n- Confirm that the team will contact them shortly.\n\nDo NOT:\n- Mention Google Sheets, tools, backend, webhook, or automation.\n- Save partial or guessed data.\n- Repeat questions unnecessarily.\n\nFinal user message:\n\"Thank you! 🙏 We’ve received your details and our team will get back to you shortly.\""},"promptType":"define"},"typeVersion":3.1},{"id":"92930286-b494-45fe-bddf-7a44891423a1","name":"OpenAI GPT-4.1 Mini Language Model","type":"@n8n/n8n-nodes-langchain.lmChatOpenAi","position":[304,208],"parameters":{"model":{"__rl":true,"mode":"list","value":"gpt-4.1-mini"},"options":{},"builtInTools":{}},"credentials":{"openAiApi":{"id":"u1QSiOsEr33tUNn7","name":"testing"}},"typeVersion":1.3},{"id":"7513a489-35e7-4423-bae9-f0c668ec7c29","name":"Session Memory with Timestamp","type":"@n8n/n8n-nodes-langchain.memoryBufferWindow","position":[480,208],"parameters":{"sessionKey":"={{ $('Receive User Message via Webhook').item.json.query.timestamp }}","sessionIdType":"customKey"},"typeVersion":1.3},{"id":"79705264-3171-4180-8a3c-a29e95cb93e2","name":"Save Lead to Google Sheets","type":"n8n-nodes-base.googleSheets","position":[784,-16],"parameters":{"columns":{"value":{"Name":"={{ $('Receive User Message via Webhook').item.json.query.name }}","Email":"={{ $('Receive User Message via Webhook').item.json.query.email }}","Message":"={{ $('Receive User Message via Webhook').item.json.query.message }}","Phone No.":"={{ $('Receive User Message via Webhook').item.json.query.phone }}","Timestamp":"={{ $('Receive User Message via Webhook').item.json.query.timestamp }}"},"schema":[{"id":"Timestamp","type":"string","display":true,"removed":false,"required":false,"displayName":"Timestamp","defaultMatch":false,"canBeUsedToMatch":true},{"id":"Name","type":"string","display":true,"removed":false,"required":false,"displayName":"Name","defaultMatch":false,"canBeUsedToMatch":true},{"id":"Phone No.","type":"string","display":true,"removed":false,"required":false,"displayName":"Phone No.","defaultMatch":false,"canBeUsedToMatch":true},{"id":"Email","type":"string","display":true,"removed":false,"required":false,"displayName":"Email","defaultMatch":false,"canBeUsedToMatch":true},{"id":"Message","type":"string","display":true,"removed":false,"required":false,"displayName":"Message","defaultMatch":false,"canBeUsedToMatch":true}],"mappingMode":"defineBelow","matchingColumns":["Timestamp"],"attemptToConvertTypes":false,"convertFieldsToString":false},"options":{},"operation":"appendOrUpdate","sheetName":{"__rl":true,"mode":"list","value":768094711,"cachedResultUrl":"https://docs.google.com/spreadsheets/d/1L709LroC9hYWF1EI4snFgTEzlSVT7aFwTb5mdGNO8NQ/edit#gid=768094711","cachedResultName":"Session Leads"},"documentId":{"__rl":true,"mode":"list","value":"1L709LroC9hYWF1EI4snFgTEzlSVT7aFwTb5mdGNO8NQ","cachedResultUrl":"https://docs.google.com/spreadsheets/d/1L709LroC9hYWF1EI4snFgTEzlSVT7aFwTb5mdGNO8NQ/edit?usp=drivesdk","cachedResultName":"Sparkwritersretreat.com - Leads Tracking"}},"credentials":{"googleSheetsOAuth2Api":{"id":"RlWUh53UsWGmpb06","name":"Google Sheets - Krishna"}},"typeVersion":4.7},{"id":"5d7a2403-d11b-4b85-bcc9-fa631795efe5","name":"Send AI Reply to User","type":"n8n-nodes-base.respondToWebhook","position":[1088,-16],"parameters":{"options":{},"respondWith":"allIncomingItems"},"typeVersion":1.5},{"id":"01b09ab4-a6ea-4e29-a9c1-cdf5ed7162ae","name":"Sticky Note","type":"n8n-nodes-base.stickyNote","position":[-480,-256],"parameters":{"width":432,"height":752,"content":"## AI Booking Chatbot with Lead Collection\n\nThis workflow creates a conversational AI chatbot that naturally\ncollects lead information (Name, Phone, Email, Message) one\nquestion at a time—without feeling like a form. The AI remembers\nthe conversation context using session-based memory, asks only\nfor missing details, and saves complete leads to Google Sheets.\nPerfect for booking systems, contact forms, or any lead capture\nthat needs a human-like conversation experience.\n\n## How it works\n1. User sends a message through webhook integration.\n2. AI checks which details are already collected vs. missing.\n3. Asks ONE question at a time in natural, friendly language.\n4. Session memory tracks the conversation using timestamp ID.\n5. Once all 4 fields collected, AI saves lead to Google Sheets.\n6. Sends confirmation message and AI reply back to user.\n\n## Setup steps\n1. Connect Google Sheets OAuth credentials.\n2. Add OpenAI API key for GPT-4.1-mini model.\n3. Update Google Sheet URL and sheet name in save node.\n4. Copy webhook URL and integrate with your website/app.\n5. Test by sending messages with query parameters."},"typeVersion":1},{"id":"c565861e-a63a-4ece-8665-2b5f1810b7a7","name":"Sticky Note1","type":"n8n-nodes-base.stickyNote","position":[64,-176],"parameters":{"color":7,"width":544,"height":208,"content":"## Message Receive & AI Processing\n\nReceives user messages via webhook, processes\nthem through the conversational AI agent that\nintelligently asks for missing lead information."},"typeVersion":1},{"id":"678385ae-f5da-4e9f-9abc-43664dff705a","name":"Sticky Note2","type":"n8n-nodes-base.stickyNote","position":[640,-176],"parameters":{"color":7,"width":320,"height":208,"content":"##  Lead Storage\n\nOnce all 4 details are collected (Name, Phone,\nEmail, Message), the AI saves the complete\nlead data to Google Sheets using timestamp."},"typeVersion":1},{"id":"9942d548-022d-4132-ab6e-2b90e33b4299","name":"Sticky Note3","type":"n8n-nodes-base.stickyNote","position":[976,-176],"parameters":{"color":7,"width":288,"height":208,"content":"## Response Delivery\n\nSends the AI's conversational reply back\nto the user via webhook, continuing the\nnatural conversation flow."},"typeVersion":1}],"pinData":{"Receive User Message via Webhook":[{"body":{},"query":{"name":"xyz","email":"text@gmail.com","phone":"6756453432","source":"weekly_session","message":"cgdtrttf","timestamp":"2026-01-28T14:38:23.720Z"},"params":{},"headers":{"host":"shivgupta01.app.n8n.cloud","accept":"*/*","cf-ray":"9c513c2022e78af8-DEL","referer":"https://preview--story-mountain-forge.lovable.app/","cdn-loop":"cloudflare; loops=1; subreqs=1","priority":"u=1, i","cf-ew-via":"15","cf-worker":"n8n.cloud","sec-ch-ua":"\"Not(A:Brand\";v=\"8\", \"Chromium\";v=\"144\", \"Google Chrome\";v=\"144\"","x-real-ip":"150.242.66.73","cf-visitor":"{\"scheme\":\"https\"}","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36","cf-ipcountry":"IN","x-is-trusted":"yes","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"cross-site","accept-encoding":"gzip, br","accept-language":"en-US,en;q=0.9","x-forwarded-for":"150.242.66.73, 104.23.216.135","cf-connecting-ip":"150.242.66.73","sec-ch-ua-mobile":"?0","x-forwarded-host":"shivgupta01.app.n8n.cloud","x-forwarded-port":"443","x-forwarded-proto":"https","sec-ch-ua-platform":"\"Windows\"","x-forwarded-server":"traefik-prod-users-gwc-11-cb7f6dc87-bk27x"},"webhookUrl":"https://shivgupta01.app.n8n.cloud/webhook/ff8b6142-d902-41ca-a666-a9e734e8ef14","executionMode":"production"}]},"connections":{"Save Lead to Google Sheets":{"main":[[{"node":"Send AI Reply to User","type":"main","index":0}]]},"Session Memory with Timestamp":{"ai_memory":[[{"node":"Conversational Lead Collection Agent","type":"ai_memory","index":0}]]},"Receive User Message via Webhook":{"main":[[{"node":"Conversational Lead Collection Agent","type":"main","index":0}]]},"OpenAI GPT-4.1 Mini Language Model":{"ai_languageModel":[[{"node":"Conversational Lead Collection Agent","type":"ai_languageModel","index":0}]]},"Conversational Lead Collection Agent":{"main":[[{"node":"Save Lead to Google Sheets","type":"main","index":0}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":10,"nodeTypes":{"n8n-nodes-base.webhook":{"count":1},"n8n-nodes-base.stickyNote":{"count":4},"n8n-nodes-base.googleSheets":{"count":1},"@n8n/n8n-nodes-langchain.agent":{"count":1},"n8n-nodes-base.respondToWebhook":{"count":1},"@n8n/n8n-nodes-langchain.lmChatOpenAi":{"count":1},"@n8n/n8n-nodes-langchain.memoryBufferWindow":{"count":1}}},"status":"published","readyToDemo":null,"user":{"name":"Incrementors","username":"incrementors","bio":"","verified":true,"links":["https://www.incrementors.com/"],"avatar":"https://gravatar.com/avatar/e09b4b6a8c5a00f886a9eedf3be23a4af5a50cc216cd6b2aee2a12c2dfba99dd?r=pg&d=retro&size=200"},"nodes":[{"id":18,"icon":"file:googleSheets.svg","name":"n8n-nodes-base.googleSheets","codex":{"data":{"alias":["CSV","Sheet","Spreadsheet","GS"],"resources":{"generic":[{"url":"https://n8n.io/blog/love-at-first-sight-ricardos-n8n-journey/","icon":"❤️","label":"Love at first sight: Ricardo’s n8n journey"},{"url":"https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/","icon":"🧬","label":"Why business process automation with n8n can change your daily life"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"url":"https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/","icon":"🎫","label":"Supercharging your conference registration process with n8n"},{"url":"https://n8n.io/blog/creating-triggers-for-n8n-workflows-using-polling/","icon":"⏲","label":"Creating triggers for n8n workflows using polling"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/migrating-community-metrics-to-orbit-using-n8n/","icon":"📈","label":"Migrating Community Metrics to Orbit using n8n"},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/your-business-doesnt-need-you-to-operate/","icon":" 🖥️","label":"Hey founders! Your business doesn't need you to operate"},{"url":"https://n8n.io/blog/how-honest-burgers-use-automation-to-save-100k-per-year/","icon":"🍔","label":"How Honest Burgers Use Automation to Save $100k per year"},{"url":"https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/","icon":"💻","label":"How a digital strategist uses n8n for online marketing"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]},"categories":["Data & Storage","Productivity"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"input\",\"output\"]","defaults":{"name":"Google Sheets"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNS42OSAxIDUyIDE3LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0OC4yOTMgNjBIMTIuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDkgNTYuMzEyVjQuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTIuNzA3IDF6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM1LjY5IDEgNTIgMTcuMjI1SDM5LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzkuMjExIDE3LjIyNSA1MiAyMi40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIwLjEyIDMxLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMS42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzEuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNC42OSAwIDUxIDE2LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0Ny4yOTMgNTlIMTEuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDggNTUuMzEyVjMuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTEuNzA3IDB6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM0LjY5IDAgNTEgMTYuMjI1SDM4LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzguMjExIDE2LjIyNSA1MSAyMS40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTE5LjEyIDMwLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMC42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzAuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjwvZz48L3N2Zz4="},"displayName":"Google Sheets","typeVersion":5,"nodeCategories":[{"id":3,"name":"Data & Storage"},{"id":4,"name":"Productivity"}]},{"id":47,"icon":"file:webhook.svg","name":"n8n-nodes-base.webhook","codex":{"data":{"alias":["HTTP","API","Build","WH"],"resources":{"generic":[{"url":"https://n8n.io/blog/learn-how-to-automatically-cross-post-your-content-with-n8n/","icon":"✍️","label":"Learn how to automatically cross-post your content with n8n"},{"url":"https://n8n.io/blog/running-n8n-on-ships-an-interview-with-maranics/","icon":"🛳","label":"Running n8n on ships: An interview with Maranics"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/what-are-apis-how-to-use-them-with-no-code/","icon":" 🪢","label":"What are APIs and how to use them with no code"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/","icon":"💻","label":"How a digital strategist uses n8n for online marketing"},{"url":"https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/","icon":"📹","label":"The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"},{"url":"https://n8n.io/blog/how-to-automatically-give-kudos-to-contributors-with-github-slack-and-n8n/","icon":"👏","label":"How to automatically give kudos to contributors with GitHub, Slack, and n8n"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/creating-custom-incident-response-workflows-with-n8n/","label":"How to automate every step of an incident response workflow"},{"url":"https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/","icon":"🧰","label":"Learn to Build Powerful API Endpoints Using Webhooks"},{"url":"https://n8n.io/blog/learn-how-to-use-webhooks-with-mattermost-slash-commands/","icon":"🦄","label":"Learn how to use webhooks with Mattermost slash commands"},{"url":"https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/"}]},"categories":["Development","Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"trigger\"]","defaults":{"name":"Webhook"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTM1IDM3Yy0yLjIgMC00LTEuOC00LTRzMS44LTQgNC00IDQgMS44IDQgNC0xLjggNC00IDQiLz48cGF0aCBmaWxsPSIjMzc0NzRmIiBkPSJNMzUgNDNjLTMgMC01LjktMS40LTcuOC0zLjdsMy4xLTIuNWMxLjEgMS40IDIuOSAyLjMgNC43IDIuMyAzLjMgMCA2LTIuNyA2LTZzLTIuNy02LTYtNmMtMSAwLTIgLjMtMi45LjdsLTEuNyAxTDIzLjMgMTZsMy41LTEuOSA1LjMgOS40YzEtLjMgMi0uNSAzLS41IDUuNSAwIDEwIDQuNSAxMCAxMFM0MC41IDQzIDM1IDQzIi8+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTE0IDQzQzguNSA0MyA0IDM4LjUgNCAzM2MwLTQuNiAzLjEtOC41IDcuNS05LjdsMSAzLjlDOS45IDI3LjkgOCAzMC4zIDggMzNjMCAzLjMgMi43IDYgNiA2czYtMi43IDYtNnYtMmgxNXY0SDIzLjhjLS45IDQuNi01IDgtOS44IDgiLz48cGF0aCBmaWxsPSIjZTkxZTYzIiBkPSJNMTQgMzdjLTIuMiAwLTQtMS44LTQtNHMxLjgtNCA0LTQgNCAxLjggNCA0LTEuOCA0LTQgNCIvPjxwYXRoIGZpbGw9IiMzNzQ3NGYiIGQ9Ik0yNSAxOWMtMi4yIDAtNC0xLjgtNC00czEuOC00IDQtNCA0IDEuOCA0IDQtMS44IDQtNCA0Ii8+PHBhdGggZmlsbD0iI2U5MWU2MyIgZD0ibTE1LjcgMzQtMy40LTIgNS45LTkuN2MtMi0xLjktMy4yLTQuNS0zLjItNy4zIDAtNS41IDQuNS0xMCAxMC0xMHMxMCA0LjUgMTAgMTBjMCAuOS0uMSAxLjctLjMgMi41bC0zLjktMWMuMS0uNS4yLTEgLjItMS41IDAtMy4zLTIuNy02LTYtNnMtNiAyLjctNiA2YzAgMi4xIDEuMSA0IDIuOSA1LjFsMS43IDF6Ii8+PC9zdmc+"},"displayName":"Webhook","typeVersion":2,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core Nodes"}]},{"id":535,"icon":"file:webhook.svg","name":"n8n-nodes-base.respondToWebhook","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook/"}]},"categories":["Core Nodes","Utility"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"transform\"]","defaults":{"name":"Respond to Webhook"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTM1IDM3Yy0yLjIgMC00LTEuOC00LTRzMS44LTQgNC00IDQgMS44IDQgNC0xLjggNC00IDQiLz48cGF0aCBmaWxsPSIjMzc0NzRmIiBkPSJNMzUgNDNjLTMgMC01LjktMS40LTcuOC0zLjdsMy4xLTIuNWMxLjEgMS40IDIuOSAyLjMgNC43IDIuMyAzLjMgMCA2LTIuNyA2LTZzLTIuNy02LTYtNmMtMSAwLTIgLjMtMi45LjdsLTEuNyAxTDIzLjMgMTZsMy41LTEuOSA1LjMgOS40YzEtLjMgMi0uNSAzLS41IDUuNSAwIDEwIDQuNSAxMCAxMFM0MC41IDQzIDM1IDQzIi8+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTE0IDQzQzguNSA0MyA0IDM4LjUgNCAzM2MwLTQuNiAzLjEtOC41IDcuNS05LjdsMSAzLjlDOS45IDI3LjkgOCAzMC4zIDggMzNjMCAzLjMgMi43IDYgNiA2czYtMi43IDYtNnYtMmgxNXY0SDIzLjhjLS45IDQuNi01IDgtOS44IDgiLz48cGF0aCBmaWxsPSIjZTkxZTYzIiBkPSJNMTQgMzdjLTIuMiAwLTQtMS44LTQtNHMxLjgtNCA0LTQgNCAxLjggNCA0LTEuOCA0LTQgNCIvPjxwYXRoIGZpbGw9IiMzNzQ3NGYiIGQ9Ik0yNSAxOWMtMi4yIDAtNC0xLjgtNC00czEuOC00IDQtNCA0IDEuOCA0IDQtMS44IDQtNCA0Ii8+PHBhdGggZmlsbD0iI2U5MWU2MyIgZD0ibTE1LjcgMzQtMy40LTIgNS45LTkuN2MtMi0xLjktMy4yLTQuNS0zLjItNy4zIDAtNS41IDQuNS0xMCAxMC0xMHMxMCA0LjUgMTAgMTBjMCAuOS0uMSAxLjctLjMgMi41bC0zLjktMWMuMS0uNS4yLTEgLjItMS41IDAtMy4zLTIuNy02LTYtNnMtNiAyLjctNiA2YzAgMi4xIDEuMSA0IDIuOSA1LjFsMS43IDF6Ii8+PC9zdmc+"},"displayName":"Respond to Webhook","typeVersion":2,"nodeCategories":[{"id":7,"name":"Utility"},{"id":9,"name":"Core Nodes"}]},{"id":565,"icon":"fa:sticky-note","name":"n8n-nodes-base.stickyNote","codex":{"data":{"alias":["Comments","Notes","Sticky"],"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"input\"]","defaults":{"name":"Sticky Note","color":"#FFD233"},"iconData":{"icon":"sticky-note","type":"icon"},"displayName":"Sticky Note","typeVersion":1,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":1119,"icon":"fa:robot","name":"@n8n/n8n-nodes-langchain.agent","codex":{"data":{"alias":["LangChain","Chat","Conversational","Plan and Execute","ReAct","Tools"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Agents","Root Nodes"]}}},"group":"[\"transform\"]","defaults":{"name":"AI Agent","color":"#404040"},"iconData":{"icon":"robot","type":"icon"},"displayName":"AI Agent","typeVersion":3,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1153,"icon":"file:openAiLight.svg","name":"@n8n/n8n-nodes-langchain.lmChatOpenAi","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Language Models","Root Nodes"],"Language Models":["Chat Models (Recommended)"]}}},"group":"[\"transform\"]","defaults":{"name":"OpenAI Chat Model"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2Ljg2NzEgMTYuMzcxOEMzNy43NzQ2IDEzLjY0OCAzNy40NjIxIDEwLjY2NDIgMzYuMDEwOCA4LjE4NjYxQzMzLjgyODIgNC4zODY1MyAyOS40NDA3IDIuNDMxNDkgMjUuMTU1NiAzLjM1MTUxQzIzLjI0OTMgMS4yMDM5NiAyMC41MTA1IC0wLjAxNzMxNDggMTcuNjM5MiAwLjAwMDE4NTUzM0MxMy4yNTkxIC0wLjAwOTgxNDY4IDkuMzcyNzMgMi44MTAyNSA4LjAyNTIgNi45Nzc4M0M1LjIxMTM5IDcuNTU0MSAyLjc4MjU4IDkuMzE1MzggMS4zNjEzIDExLjgxMTdDLTAuODM3NDkzIDE1LjYwMTggLTAuMzM2MjMyIDIwLjM3OTQgMi42MDEzMyAyMy42Mjk0QzEuNjkzODEgMjYuMzUzMiAyLjAwNjMyIDI5LjMzNzEgMy40NTc2IDMxLjgxNDZDNS42NDAxNSAzNS42MTQ3IDEwLjAyNzcgMzcuNTY5NyAxNC4zMTI4IDM2LjY0OTdDMTYuMjE3OSAzOC43OTczIDE4Ljk1NzkgNDAuMDE4NSAyMS44MjkyIDM5Ljk5OThDMjYuMjExOCA0MC4wMTEgMzAuMDk5NCAzNy4xODg1IDMxLjQ0NjkgMzMuMDE3MUMzNC4yNjA4IDMyLjQ0MDkgMzYuNjg5NiAzMC42Nzk2IDM4LjExMDggMjguMTgzM0M0MC4zMDcxIDI0LjM5MzIgMzkuODA0NiAxOS42MTk0IDM2Ljg2ODMgMTYuMzY5M0wzNi44NjcxIDE2LjM3MThaTTIxLjgzMTcgMzcuMzg2QzIwLjA3OCAzNy4zODg1IDE4LjM3OTIgMzYuNzc0NyAxNy4wMzI5IDM1LjY1MDlDMTcuMDk0MSAzNS42MTg0IDE3LjIwMDQgMzUuNTU5NyAxNy4yNjkxIDM1LjUxNzJMMjUuMjM0MyAzMC45MTcxQzI1LjY0MTggMzAuNjg1OCAyNS44OTE4IDMwLjI1MjEgMjUuODg5MyAyOS43ODMzVjE4LjU1NDNMMjkuMjU1NyAyMC40OTgxQzI5LjI5MTkgMjAuNTE1NiAyOS4zMTU3IDIwLjU1MDYgMjkuMzIwNyAyMC41OTA2VjI5Ljg4OTZDMjkuMzE1NyAzNC4wMjQ3IDI1Ljk2NjggMzcuMzc3MiAyMS44MzE3IDM3LjM4NlpNNS43MjY0IDMwLjUwNzFDNC44NDc2MyAyOC45ODk2IDQuNTMxMzcgMjcuMjEwOCA0LjgzMjYzIDI1LjQ4NDVDNC44OTEzOCAyNS41MTk1IDQuOTk1MTMgMjUuNTgzMiA1LjA2ODg4IDI1LjYyNTdMMTMuMDM0MSAzMC4yMjU4QzEzLjQzNzggMzAuNDYyMSAxMy45Mzc4IDMwLjQ2MjEgMTQuMzQyOCAzMC4yMjU4TDI0LjA2NjggMjQuNjEwN1YyOC40OTgzQzI0LjA2OTMgMjguNTM4MyAyNC4wNTA1IDI4LjU3NyAyNC4wMTkzIDI4LjYwMkwxNS45Njc5IDMzLjI1MDlDMTIuMzgxNSAzNS4zMTU5IDcuODAxNDQgMzQuMDg4NCA1LjcyNzY1IDMwLjUwNzFINS43MjY0Wk0zLjYzMDEgMTMuMTIwNUM0LjUwNTEyIDExLjYwMDQgNS44ODY0IDEwLjQzNzkgNy41MzE0NCA5LjgzNDE1QzcuNTMxNDQgOS45MDI5IDcuNTI3NjkgMTAuMDI0MiA3LjUyNzY5IDEwLjEwOTJWMTkuMzEwNkM3LjUyNTE5IDE5Ljc3ODEgNy43NzUxOSAyMC4yMTE5IDguMTgxNDUgMjAuNDQzMUwxNy45MDU0IDI2LjA1N0wxNC41MzkxIDI4LjAwMDhDMTQuNTA1MyAyOC4wMjMzIDE0LjQ2MjggMjguMDI3IDE0LjQyNTMgMjguMDEwOEw2LjM3MjY2IDIzLjM1ODJDMi43OTM4MyAyMS4yODU2IDEuNTY2MzEgMTYuNzA2OCAzLjYyODg1IDEzLjEyMTdMMy42MzAxIDEzLjEyMDVaTTMxLjI4ODIgMTkuNTU2OUwyMS41NjQyIDEzLjk0MTdMMjQuOTMwNiAxMS45OTkyQzI0Ljk2NDMgMTEuOTc2NyAyNS4wMDY4IDExLjk3MjkgMjUuMDQ0MyAxMS45ODkyTDMzLjA5NyAxNi42MzhDMzYuNjgyMSAxOC43MDkzIDM3LjkxMDggMjMuMjk1NyAzNS44Mzk1IDI2Ljg4MDhDMzQuOTYzMyAyOC4zOTgzIDMzLjU4MzIgMjkuNTYwOCAzMS45Mzk1IDMwLjE2NThWMjAuNjg5NEMzMS45NDMyIDIwLjIyMTkgMzEuNjk0NSAxOS43ODk0IDMxLjI4OTQgMTkuNTU2OUgzMS4yODgyWk0zNC42MzgzIDE0LjUxNDJDMzQuNTc5NSAxNC40NzggMzQuNDc1OCAxNC40MTU1IDM0LjQwMiAxNC4zNzNMMjYuNDM2OCA5Ljc3Mjg5QzI2LjAzMzEgOS41MzY2NCAyNS41MzMxIDkuNTM2NjQgMjUuMTI4MSA5Ljc3Mjg5TDE1LjQwNDEgMTUuMzg4VjExLjUwMDRDMTUuNDAxNiAxMS40NjA0IDE1LjQyMDQgMTEuNDIxNyAxNS40NTE2IDExLjM5NjdMMjMuNTAzIDYuNzUxNThDMjcuMDg5NCA0LjY4Mjc5IDMxLjY3NDUgNS45MTQwNiAzMy43NDIgOS41MDE2NEMzNC42MTU4IDExLjAxNjcgMzQuOTMyIDEyLjc5MDUgMzQuNjM1OCAxNC41MTQySDM0LjYzODNaTTEzLjU3NDEgMjEuNDQzMUwxMC4yMDY1IDE5LjQ5OTRDMTAuMTcwMiAxOS40ODE5IDEwLjE0NjUgMTkuNDQ2OCAxMC4xNDE1IDE5LjQwNjhWMTAuMTA3OUMxMC4xNDQgNS45Njc4MSAxMy41MDI4IDIuNjEyNzQgMTcuNjQyOSAyLjYxNTI0QzE5LjM5NDIgMi42MTUyNCAyMS4wODkyIDMuMjMwMjUgMjIuNDM1NSA0LjM1MDI4QzIyLjM3NDMgNC4zODI3OCAyMi4yNjkzIDQuNDQxNTMgMjIuMTk5MiA0LjQ4NDAzTDE0LjIzNDEgOS4wODQxM0MxMy44MjY2IDkuMzE1MzggMTMuNTc2NiA5Ljc0Nzg5IDEzLjU3OTEgMTAuMjE2N0wxMy41NzQxIDIxLjQ0MDZWMjEuNDQzMVpNMTUuNDAyOSAxNy41MDA2TDE5LjczNDIgMTQuOTk5M0wyNC4wNjU1IDE3LjQ5OTNWMjIuNTAwN0wxOS43MzQyIDI1LjAwMDdMMTUuNDAyOSAyMi41MDA3VjE3LjUwMDZaIiBmaWxsPSIjN0Q3RDg3Ii8+Cjwvc3ZnPgo="},"displayName":"OpenAI Chat Model","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1163,"icon":"fa:database","name":"@n8n/n8n-nodes-langchain.memoryBufferWindow","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Memory"],"Memory":["For beginners"]}}},"group":"[\"transform\"]","defaults":{"name":"Simple Memory"},"iconData":{"icon":"database","type":"icon"},"displayName":"Simple Memory","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]}],"categories":[{"id":37,"name":"Lead Generation"},{"id":47,"name":"AI Chatbot"}],"image":[]}}