8
n8n 한국어amn8n.com

Claude 3.7 Sonnet AI 대리인(네트워크 검색 및 사고 기능)

중급

이것은Building Blocks, AI분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 Agent, HttpRequestTool, ToolThink, ChatTrigger, LmChatAnthropic 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Anthropic 네트워크 검색 및 사고 기능을 갖춘 Claude 3.7 Sonnet AI 채팅 로봇 대리인

사전 요구사항
  • 대상 API의 인증 정보가 필요할 수 있음
  • Anthropic API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "tnR20GpQTEWVMayy",
  "meta": {
    "instanceId": "a4bfc93e975ca233ac45ed7c9227d84cf5a2329310525917adaf3312e10d5462",
    "templateCredsSetupCompleted": true
  },
  "name": "Claude 3.7 Sonnet AI Agent with web search and Think functions",
  "tags": [],
  "nodes": [
    {
      "id": "28388e6f-3dfc-4e2b-a367-81104c4ef8af",
      "name": "채팅 메시지 수신 시",
      "type": "@n8n/n8n-nodes-langchain.chatTrigger",
      "position": [
        -220,
        -140
      ],
      "webhookId": "095537c6-b21a-4cb2-8312-13b1bf1699dc",
      "parameters": {
        "options": {}
      },
      "typeVersion": 1.1
    },
    {
      "id": "abd6690f-cbf7-4b47-bba9-6856da348d33",
      "name": "AI 에이전트",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        0,
        -140
      ],
      "parameters": {
        "options": {
          "systemMessage": "=You are an AI-powered chatbot assistant for a website. Your primary function is to assist users by answering their queries and providing relevant information. You have access to a web_search tool that allows you to browse the internet for up-to-date information. Here's how you should operate:\n\n1. Website Information:\nFamiliarize yourself with this information about the website you're assisting. Use this as context for user interactions.\n\n2. Web Search Tool:\nYou have access to a web_search tool that can browse the internet. To use it, write the variable {web_search_question}. The tool will return relevant search results.\n\n3. Handling User Queries:\nWhen a user asks a question, follow these steps:\na) Analyze the query to determine if it's related to the website or requires external information.\nb) If the query is about the website, use the provided website information to answer.\nc) If external information is needed, use the web_search tool to find relevant data.\n\n4. Using web_search:\n- Use web_search for factual, current information that isn't provided in the website info.\n- Formulate clear, concise search queries.\n- If the first search doesn't yield useful results, refine your query and search again.\n- Limit searches to a maximum of three per user query to maintain efficiency.\n\n5. Using Think:\n- Using Think tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.\n\n6. Formulating Responses:\n- Begin with information from the website if relevant.\n- Incorporate web search results to provide up-to-date, accurate information.\n- Summarize findings concisely and coherently.\n- If you're unsure or can't find reliable information, be honest about limitations.\n\n7. Ethical Considerations:\n- Respect user privacy. Don't ask for or store personal information.\n- Provide factual information. Avoid speculation or unverified claims.\n- If asked about controversial topics, strive for a balanced, neutral response.\n- Don't engage in or encourage illegal activities.\n\n8. Output Format:\nDo not include your thought process, web searches, or any other tags in the final output.\n"
        }
      },
      "typeVersion": 1.9
    },
    {
      "id": "f862db48-2498-4e8d-8eab-0ecb3d06e5a8",
      "name": "Anthropic 채팅 모델",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        -80,
        80
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "claude-3-7-sonnet-20250219",
          "cachedResultName": "Claude 3.7 Sonnet"
        },
        "options": {
          "maxTokensToSample": 1024
        }
      },
      "credentials": {
        "anthropicApi": {
          "id": "NNTZAD0Gmf7lcniq",
          "name": "Anthropic account"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "ced144d4-465c-4a8f-8822-97a93111077e",
      "name": "심플 메모리",
      "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
      "position": [
        80,
        80
      ],
      "parameters": {},
      "typeVersion": 1.3
    },
    {
      "id": "93e6bfb3-6a95-4ecf-af39-aad3ca6019a0",
      "name": "web_search",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        200,
        80
      ],
      "parameters": {
        "url": "https://api.anthropic.com/v1/messages",
        "method": "POST",
        "options": {},
        "jsonBody": "={{ /*n8n-auto-generated-fromAI-override*/ $fromAI('JSON', `{\n  \"model\": \"claude-3-7-sonnet-latest\",\n  \"max_tokens\": 1024,\n  \"messages\": [\n    {\n      \"role\": \"user\",\n      \"content\": \"{web_search_question}\"\n    }\n  ],\n  \"tools\": [\n    {\n      \"type\": \"web_search_20250305\",\n      \"name\": \"web_search\",\n      \"max_uses\": 5\n    }\n  ]\n}\n`, 'json') }}",
        "sendBody": true,
        "sendHeaders": true,
        "specifyBody": "json",
        "authentication": "predefinedCredentialType",
        "toolDescription": "Use this tool to search on the web",
        "headerParameters": {
          "parameters": [
            {
              "name": "anthropic-version",
              "value": "2023-06-01"
            },
            {
              "name": "content-type",
              "value": "application/jso"
            }
          ]
        },
        "nodeCredentialType": "anthropicApi"
      },
      "credentials": {
        "anthropicApi": {
          "id": "NNTZAD0Gmf7lcniq",
          "name": "Anthropic account"
        },
        "httpHeaderAuth": {
          "id": "2CfPPhYGH4peDClc",
          "name": "Header Auth Anthropic API"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "00335b1e-03b2-4c6c-993a-b452e265cdeb",
      "name": "Think",
      "type": "@n8n/n8n-nodes-langchain.toolThink",
      "position": [
        320,
        80
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "0c493a57-65fa-48b4-a3b3-944b052a4dd5",
      "name": "스티커 노트",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -220,
        -340
      ],
      "parameters": {
        "width": 620,
        "content": "## Claude 3.7 Sonnet AI Agent with web search and Think functions\nThis workflow builds a conversational AI chatbot agent using **Claude 3.7 Sonnet** model with the new . It enhances standard LLM capabilities with Anthropic’s features: **Web Search** and **Think**."
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "0e13b1bb-4231-4d18-80ac-fa155f084a6d",
  "connections": {
    "00335b1e-03b2-4c6c-993a-b452e265cdeb": {
      "ai_tool": [
        [
          {
            "node": "abd6690f-cbf7-4b47-bba9-6856da348d33",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "93e6bfb3-6a95-4ecf-af39-aad3ca6019a0": {
      "ai_tool": [
        [
          {
            "node": "abd6690f-cbf7-4b47-bba9-6856da348d33",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "ced144d4-465c-4a8f-8822-97a93111077e": {
      "ai_memory": [
        [
          {
            "node": "abd6690f-cbf7-4b47-bba9-6856da348d33",
            "type": "ai_memory",
            "index": 0
          }
        ]
      ]
    },
    "f862db48-2498-4e8d-8eab-0ecb3d06e5a8": {
      "ai_languageModel": [
        [
          {
            "node": "abd6690f-cbf7-4b47-bba9-6856da348d33",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "28388e6f-3dfc-4e2b-a367-81104c4ef8af": {
      "main": [
        [
          {
            "node": "abd6690f-cbf7-4b47-bba9-6856da348d33",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 빌딩 블록, 인공지능

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수7
카테고리2
노드 유형7
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자

Full-stack Web Developer based in Italy specialising in Marketing & AI-powered automations. For business enquiries, send me an email at info@n3w.it or add me on Linkedin.com/in/davideboizza

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34