### Dynamic Parameters with $fromAI() Source: https://github.com/firecrawl/n8n-nodes-firecrawl/blob/master/README.md Examples of using the $fromAI() function in n8n to allow an AI agent to dynamically determine parameter values for Firecrawl operations, such as the URL to scrape, search query, or inclusion of subdomains. ```javascript // Let AI decide the URL to scrape {{ $fromAI("url", "The URL to scrape", "string") }} // Let AI decide the search query {{ $fromAI("query", "Search query for finding relevant pages", "string") }} // Let AI decide whether to include subdomains {{ $fromAI("includeSubdomains", "Whether to include subdomains", "boolean", false) }} ``` -------------------------------- ### Docker Configuration for AI Tool Usage Source: https://github.com/firecrawl/n8n-nodes-firecrawl/blob/master/README.md This YAML configuration shows how to set up a Docker service for n8n, enabling community nodes as AI tools by setting the environment variable N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE to true. ```yaml version: '3' services: n8n: image: n8nio/n8n environment: - N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true ports: - "5678:5678" volumes: - ~/.n8n:/home/node/.n8n ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.