docs: Add Brave Search and Daytona credential documentation#4455
Open
OlegIvaniv wants to merge 1 commit intomainfrom
Open
docs: Add Brave Search and Daytona credential documentation#4455OlegIvaniv wants to merge 1 commit intomainfrom
OlegIvaniv wants to merge 1 commit intomainfrom
Conversation
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
✅ Deploy Preview for n8n-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
|
|
No description provided. |
Contributor
There was a problem hiding this comment.
No issues found across 3 files
Architecture diagram
sequenceDiagram
participant User as User / Admin
participant Dashboard as External Service Dashboard
participant n8n as n8n Server (Credential Store)
participant Agent as AI Agent Node (nodes-langchain)
participant Brave as Brave Search API
participant Daytona as Daytona API
Note over User, Dashboard: Credential Acquisition Phase
User->>Dashboard: Log in to Brave/Daytona
Dashboard-->>User: NEW: Generate API Key / URL
Note over User, n8n: Credential Configuration Phase
User->>n8n: NEW: Provide BraveSearchApi credentials
User->>n8n: NEW: Provide DaytonaApi credentials (API Key + URL)
n8n->>n8n: Encrypt and store credentials
Note over Agent, Daytona: Runtime Execution Phase (Instance AI)
Agent->>n8n: Request decrypted credentials
n8n-->>Agent: Credentials (API Keys)
alt Tool: Web Search
Agent->>Brave: NEW: GET /search (Auth: API-Key Header)
Brave-->>Agent: Web search results
else Tool: Code Sandbox
Agent->>Daytona: NEW: POST /api (Auth: Bearer Token)
Daytona-->>Agent: Sandbox environment / Code execution result
end
Agent-->>User: Final Response via n8n Workflow
Deploying n8n-docs with
|
| Latest commit: |
b3316e0
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://8f986063.n8n-docs-d9c.pages.dev |
| Branch Preview URL: | https://instance-ai-creds.n8n-docs-d9c.pages.dev |
|
Thanks @OlegIvaniv! We'll hold off on reviewing this until the PR is ready to go in the main repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds credential setup documentation for two new credential types used by the n8n AI Agent. The corresponding credential type definitions (
BraveSearchApi,DaytonaApi) are being added to@n8n/nodes-langchainin the main n8n repo. These credentials are used internally by Instance AI for web search and sandbox functionality but credentials could be useful with http node too.bravesearch.md) -- API key setup via the Brave Search API dashboarddaytona.md) -- API URL and API key setup via the Daytona dashboardSummary by cubic
Add credential setup docs for Brave Search and Daytona and update the docs nav. Supports the new
BraveSearchApiandDaytonaApiin@n8n/nodes-langchainused by Instance AI for search and sandbox.Written for commit b3316e0. Summary will update on new commits.