[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-llm-context":3,"mdc--o401ij-key":33,"related-org-brave-llm-context":4384,"related-repo-brave-llm-context":4508},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"llm-context","fetch web content for LLM grounding","USE FOR RAG\u002FLLM grounding. Returns pre-extracted web content (text, tables, code) optimized for LLMs. GET + POST. Adjust max_tokens\u002Fcount based on complexity. Supports Goggles, local\u002FPOI. For AI answers use answers. Recommended for anyone building AI\u002Fagentic applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"brave","Brave","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fbrave.png",[12,16,19],{"name":13,"slug":14,"type":15},"Brave Search","brave-search","tag",{"name":17,"slug":18,"type":15},"LLM","llm",{"name":20,"slug":21,"type":15},"Search","search",161,"https:\u002F\u002Fgithub.com\u002Fbrave\u002Fbrave-search-skills","2026-04-06T18:05:58.243978",null,11,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Official skills for using Brave Search API with AI coding agents.","https:\u002F\u002Fgithub.com\u002Fbrave\u002Fbrave-search-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fllm-context","---\nname: llm-context\ndescription: USE FOR RAG\u002FLLM grounding. Returns pre-extracted web content (text, tables, code) optimized for LLMs. GET + POST. Adjust max_tokens\u002Fcount based on complexity. Supports Goggles, local\u002FPOI. For AI answers use answers. Recommended for anyone building AI\u002Fagentic applications.\n---\n\n# LLM Context\n\n> **Requires API Key**: Get one at https:\u002F\u002Fapi.search.brave.com\n>\n> **Plan**: Included in the **Search** plan. See https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe\n\nBrave LLM Context API delivers pre-extracted, relevance-ranked web content optimized for grounding LLM responses in real-time search results. Unlike traditional web search APIs that return links and snippets, LLM Context extracts the actual page content—text chunks, tables, code blocks, and structured data—so your LLM or AI agent can reason over it directly.\n\n## LLM Context vs AI Grounding\n\n| Feature | LLM Context (this) | AI Grounding (`answers`) |\n|--|--|--|\n| Output | Raw extracted content for YOUR LLM | End-to-end AI answers with citations |\n| Interface | REST API (GET\u002FPOST) | OpenAI-compatible `\u002Fchat\u002Fcompletions` |\n| Searches | Single search per request | Multi-search (iterative research) |\n| Speed | Fast (\u003C1s) | Slower |\n| Plan | Search | Answers |\n| Endpoint | `\u002Fres\u002Fv1\u002Fllm\u002Fcontext` | `\u002Fres\u002Fv1\u002Fchat\u002Fcompletions` |\n| Best for | AI agents, RAG pipelines, tool calls | Chat interfaces, research mode |\n\n## Endpoint\n\n```http\nGET  https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\nPOST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\n```\n\n**Authentication**: `X-Subscription-Token: \u003CAPI_KEY>` header\n\n**Optional Headers**:\n- `Accept-Encoding: gzip` — Enable gzip compression\n\n## Quick Start\n\n### GET Request\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext?q=tallest+mountains+in+the+world\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n```\n\n### POST Request (JSON body)\n```bash\ncurl -s --compressed -X POST \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"q\": \"tallest mountains in the world\"}'\n```\n\n### With Goggles (Inline)\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=rust programming\" \\\n  --data-urlencode 'goggles=$discard\n$site=docs.rs\n$site=rust-lang.org'\n```\n\n## Parameters\n\n### Query Parameters\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `q` | string | **Yes** | - | Search query (1-400 chars, max 50 words) |\n| `country` | string | No | `US` | Search country (2-letter country code or `ALL`) |\n| `search_lang` | string | No | `en` | Language preference (2+ char language code) |\n| `count` | int | No | `20` | Max search results to consider (1-50) |\n\n### Context Size Parameters\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `maximum_number_of_urls` | int | No | `20` | Max URLs in response (1-50) |\n| `maximum_number_of_tokens` | int | No | `8192` | Approximate max tokens in context (1024-32768) |\n| `maximum_number_of_snippets` | int | No | `50` | Max snippets across all URLs (1-100) |\n| `maximum_number_of_tokens_per_url` | int | No | `4096` | Max tokens per individual URL (512-8192) |\n| `maximum_number_of_snippets_per_url` | int | No | `50` | Max snippets per individual URL (1-100) |\n\n### Filtering & Local Parameters\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `context_threshold_mode` | string | No | `balanced` | Relevance threshold for including content (`strict`\u002F`balanced`\u002F`lenient`) |\n| `enable_local` | bool | No | `null` | Local recall control (`true`\u002F`false`\u002F`null`, see below) |\n| `goggles` | string\u002Flist | No | `null` | Goggle URL or inline definition for custom re-ranking |\n\n## Context Size Guidelines\n\n| Task Type | count | max_tokens | Example |\n|--|--|--|--|\n| Simple factual | 5 | 2048 | \"What year was Python created?\" |\n| Standard queries | 20 | 8192 | \"Best practices for React hooks\" |\n| Complex research | 50 | 16384 | \"Compare AI frameworks for production\" |\n\nLarger context windows provide more information but increase latency and cost (of your inference). Start with defaults and adjust.\n\n## Threshold Modes\n\n| Mode | Behavior |\n|--|--|\n| `strict` | Higher threshold — fewer but more relevant results |\n| `balanced` | Default — good balance between coverage and relevance |\n| `lenient` | Lower threshold — more results, may include less relevant content |\n\n## Local Recall\n\nThe `enable_local` parameter controls location-aware recall:\n\n| Value | Behavior |\n|--|--|\n| `null` (not set) | **Auto-detect** — local recall enabled when any location header is provided |\n| `true` | **Force local** — always use local recall, even without location headers |\n| `false` | **Force standard** — always use standard web ranking, even with location headers |\n\nFor most use cases, omit `enable_local` and let the API auto-detect from location headers.\n\n## Location Headers\n\n| Header | Type | Description |\n|--|--|--|\n| `X-Loc-Lat` | float | Latitude (-90.0 to 90.0) |\n| `X-Loc-Long` | float | Longitude (-180.0 to 180.0) |\n| `X-Loc-City` | string | City name |\n| `X-Loc-State` | string | State\u002Fregion code (ISO 3166-2) |\n| `X-Loc-State-Name` | string | State\u002Fregion name |\n| `X-Loc-Country` | string | 2-letter country code |\n| `X-Loc-Postal-Code` | string | Postal code |\n\n> **Priority**: `X-Loc-Lat` + `X-Loc-Long` take precedence. When provided, text-based headers (City, State, Country, Postal-Code) are not used for location resolution. Provide text-based headers **only** when you don't have coordinates.\n\n### Example: With Coordinates\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\" \\\n  -G \\\n  --data-urlencode \"q=best coffee shops near me\"\n```\n\n### Example: With Place Name\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-City: San Francisco\" \\\n  -H \"X-Loc-State: CA\" \\\n  -H \"X-Loc-Country: US\" \\\n  -G \\\n  --data-urlencode \"q=best coffee shops near me\"\n```\n\n## Goggles (Custom Ranking) — Unique to Brave\n\nGoggles let you **control which sources ground your LLM** — essential for RAG quality.\n\n| Use Case | Goggle Rules |\n|--|--|\n| Official docs only | `$discard\\n$site=docs.python.org` |\n| Exclude user content | `$discard,site=reddit.com\\n$discard,site=stackoverflow.com` |\n| Academic sources | `$discard\\n$site=arxiv.org\\n$site=.edu` |\n| No paywalls | `$discard,site=medium.com` |\n\n| Method | Example |\n|--|--|\n| **Hosted** | `--data-urlencode \"goggles=https:\u002F\u002Fraw.githubusercontent.com\u002Fbrave\u002Fgoggles-quickstart\u002Fmain\u002Fgoggles\u002F1k_short.goggle\"` |\n| **Inline** | `--data-urlencode 'goggles=$discard\\n$site=example.com'` |\n\n> **Hosted** goggles must be on GitHub\u002FGitLab, include `! name:`, `! description:`, `! author:` headers, and be registered at https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fcreate. **Inline** rules need no registration.\n\n**Syntax**: `$boost=N` \u002F `$downrank=N` (1–10), `$discard`, `$site=example.com`. Combine with commas: `$site=example.com,boost=3`. Separate rules with `\\n` (`%0A`).\n\n**Allow list**: `$discard\\n$site=docs.python.org\\n$site=developer.mozilla.org` — **Block list**: `$discard,site=pinterest.com\\n$discard,site=quora.com`\n\n**Resources**: [Discover](https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fdiscover) · [Syntax](https:\u002F\u002Fsearch.brave.com\u002Fhelp\u002Fgoggles) · [Quickstart](https:\u002F\u002Fgithub.com\u002Fbrave\u002Fgoggles-quickstart)\n\n## Response Format\n\n### Standard Response\n\n```json\n{\n  \"grounding\": {\n    \"generic\": [\n      {\n        \"url\": \"https:\u002F\u002Fexample.com\u002Fpage\",\n        \"title\": \"Page Title\",\n        \"snippets\": [\n          \"Relevant text chunk extracted from the page...\",\n          \"Another relevant passage from the same page...\"\n        ]\n      }\n    ],\n    \"map\": []\n  },\n  \"sources\": {\n    \"https:\u002F\u002Fexample.com\u002Fpage\": {\n      \"title\": \"Page Title\",\n      \"hostname\": \"example.com\",\n      \"age\": [\"Wednesday, January 15, 2025\", \"2025-01-15\", \"392 days ago\"]\n    }\n  }\n}\n```\n\n### Local Response (with `enable_local`)\n\n```json\n{\n  \"grounding\": {\n    \"generic\": [...],\n    \"poi\": {\n      \"name\": \"Business Name\",\n      \"url\": \"https:\u002F\u002Fbusiness.com\",\n      \"title\": \"Title of business.com website\",\n      \"snippets\": [\"Business details and information...\"]\n    },\n    \"map\": [\n      {\n        \"name\": \"Place Name\",\n        \"url\": \"https:\u002F\u002Fplace.com\",\n        \"title\": \"Title of place.com website\",\n        \"snippets\": [\"Place information and details...\"]\n      }\n    ]\n  },\n  \"sources\": {\n    \"https:\u002F\u002Fbusiness.com\": {\n      \"title\": \"Business Name\",\n      \"hostname\": \"business.com\",\n      \"age\": null\n    }\n  }\n}\n```\n\n### Response Fields\n\n| Field | Type | Description |\n|--|--|--|\n| `grounding` | object | Container for all grounding content by type |\n| `grounding.generic` | array | Array of URL objects with extracted content (main grounding data) |\n| `grounding.generic[].url` | string | Source URL |\n| `grounding.generic[].title` | string | Page title |\n| `grounding.generic[].snippets` | array | Extracted smart chunks relevant to the query |\n| `grounding.poi` | object\u002Fnull | Point of interest data (only with local recall) |\n| `grounding.poi.name` | string\u002Fnull | Point of interest name |\n| `grounding.poi.url` | string\u002Fnull | POI source URL |\n| `grounding.poi.title` | string\u002Fnull | POI page title |\n| `grounding.poi.snippets` | array\u002Fnull | POI text snippets |\n| `grounding.map` | array | Map\u002Fplace results (only with local recall) |\n| `grounding.map[].name` | string\u002Fnull | Place name |\n| `grounding.map[].url` | string\u002Fnull | Place source URL |\n| `grounding.map[].title` | string\u002Fnull | Place page title |\n| `grounding.map[].snippets` | array\u002Fnull | Place text snippets |\n| `sources` | object | Metadata for all referenced URLs, keyed by URL |\n| `sources[url].title` | string | Page title |\n| `sources[url].hostname` | string | Source hostname |\n| `sources[url].age` | array\u002Fnull | Page modification dates (when available) |\n\n**Note**: Snippets may contain plain text OR JSON-serialized structured data (tables, schemas, code blocks). LLMs handle this mixed format well.\n\n## Use Cases\n\n- **AI Agents**: Give your agent a web search tool that returns ready-to-use content in a single call\n- **RAG Pipelines**: Ground LLM responses in fresh, relevant web content\n- **AI Assistants & Chatbots**: Provide factual answers backed by real sources\n- **Question Answering**: Retrieve focused context for specific queries\n- **Fact Checking**: Verify claims against current web content\n- **Content Research**: Gather source material on any topic with one API call\n\n## Best Practices\n\n- **Token budget**: Start with defaults (`maximum_number_of_tokens=8192`, `count=20`). Reduce for simple lookups, increase for complex research.\n- **Source quality**: Use Goggles to restrict to trusted sources. Set `context_threshold_mode=strict` when precision > recall.\n- **Performance**: Use smallest `count` and `maximum_number_of_tokens` that meet your needs. For local queries, provide location headers.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,46,92,97,104,284,289,320,338,348,364,370,377,480,486,664,670,833,839,845,1028,1034,1234,1240,1417,1423,1520,1525,1531,1601,1607,1619,1705,1717,1723,1896,1929,1935,2103,2109,2299,2305,2317,2407,2468,2517,2581,2610,2642,2648,2654,3162,3174,3791,3797,4223,4233,4239,4302,4308,4378],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","LLM Context",{"type":39,"tag":47,"props":48,"children":49},"blockquote",{},[50,70],{"type":39,"tag":51,"props":52,"children":53},"p",{},[54,60,62],{"type":39,"tag":55,"props":56,"children":57},"strong",{},[58],{"type":44,"value":59},"Requires API Key",{"type":44,"value":61},": Get one at ",{"type":39,"tag":63,"props":64,"children":68},"a",{"href":65,"rel":66},"https:\u002F\u002Fapi.search.brave.com",[67],"nofollow",[69],{"type":44,"value":65},{"type":39,"tag":51,"props":71,"children":72},{},[73,78,80,84,86],{"type":39,"tag":55,"props":74,"children":75},{},[76],{"type":44,"value":77},"Plan",{"type":44,"value":79},": Included in the ",{"type":39,"tag":55,"props":81,"children":82},{},[83],{"type":44,"value":20},{"type":44,"value":85}," plan. See ",{"type":39,"tag":63,"props":87,"children":90},{"href":88,"rel":89},"https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe",[67],[91],{"type":44,"value":88},{"type":39,"tag":51,"props":93,"children":94},{},[95],{"type":44,"value":96},"Brave LLM Context API delivers pre-extracted, relevance-ranked web content optimized for grounding LLM responses in real-time search results. Unlike traditional web search APIs that return links and snippets, LLM Context extracts the actual page content—text chunks, tables, code blocks, and structured data—so your LLM or AI agent can reason over it directly.",{"type":39,"tag":98,"props":99,"children":101},"h2",{"id":100},"llm-context-vs-ai-grounding",[102],{"type":44,"value":103},"LLM Context vs AI Grounding",{"type":39,"tag":105,"props":106,"children":107},"table",{},[108,141],{"type":39,"tag":109,"props":110,"children":111},"thead",{},[112],{"type":39,"tag":113,"props":114,"children":115},"tr",{},[116,122,127],{"type":39,"tag":117,"props":118,"children":119},"th",{},[120],{"type":44,"value":121},"Feature",{"type":39,"tag":117,"props":123,"children":124},{},[125],{"type":44,"value":126},"LLM Context (this)",{"type":39,"tag":117,"props":128,"children":129},{},[130,132,139],{"type":44,"value":131},"AI Grounding (",{"type":39,"tag":133,"props":134,"children":136},"code",{"className":135},[],[137],{"type":44,"value":138},"answers",{"type":44,"value":140},")",{"type":39,"tag":142,"props":143,"children":144},"tbody",{},[145,164,188,206,224,240,266],{"type":39,"tag":113,"props":146,"children":147},{},[148,154,159],{"type":39,"tag":149,"props":150,"children":151},"td",{},[152],{"type":44,"value":153},"Output",{"type":39,"tag":149,"props":155,"children":156},{},[157],{"type":44,"value":158},"Raw extracted content for YOUR LLM",{"type":39,"tag":149,"props":160,"children":161},{},[162],{"type":44,"value":163},"End-to-end AI answers with citations",{"type":39,"tag":113,"props":165,"children":166},{},[167,172,177],{"type":39,"tag":149,"props":168,"children":169},{},[170],{"type":44,"value":171},"Interface",{"type":39,"tag":149,"props":173,"children":174},{},[175],{"type":44,"value":176},"REST API (GET\u002FPOST)",{"type":39,"tag":149,"props":178,"children":179},{},[180,182],{"type":44,"value":181},"OpenAI-compatible ",{"type":39,"tag":133,"props":183,"children":185},{"className":184},[],[186],{"type":44,"value":187},"\u002Fchat\u002Fcompletions",{"type":39,"tag":113,"props":189,"children":190},{},[191,196,201],{"type":39,"tag":149,"props":192,"children":193},{},[194],{"type":44,"value":195},"Searches",{"type":39,"tag":149,"props":197,"children":198},{},[199],{"type":44,"value":200},"Single search per request",{"type":39,"tag":149,"props":202,"children":203},{},[204],{"type":44,"value":205},"Multi-search (iterative research)",{"type":39,"tag":113,"props":207,"children":208},{},[209,214,219],{"type":39,"tag":149,"props":210,"children":211},{},[212],{"type":44,"value":213},"Speed",{"type":39,"tag":149,"props":215,"children":216},{},[217],{"type":44,"value":218},"Fast (\u003C1s)",{"type":39,"tag":149,"props":220,"children":221},{},[222],{"type":44,"value":223},"Slower",{"type":39,"tag":113,"props":225,"children":226},{},[227,231,235],{"type":39,"tag":149,"props":228,"children":229},{},[230],{"type":44,"value":77},{"type":39,"tag":149,"props":232,"children":233},{},[234],{"type":44,"value":20},{"type":39,"tag":149,"props":236,"children":237},{},[238],{"type":44,"value":239},"Answers",{"type":39,"tag":113,"props":241,"children":242},{},[243,248,257],{"type":39,"tag":149,"props":244,"children":245},{},[246],{"type":44,"value":247},"Endpoint",{"type":39,"tag":149,"props":249,"children":250},{},[251],{"type":39,"tag":133,"props":252,"children":254},{"className":253},[],[255],{"type":44,"value":256},"\u002Fres\u002Fv1\u002Fllm\u002Fcontext",{"type":39,"tag":149,"props":258,"children":259},{},[260],{"type":39,"tag":133,"props":261,"children":263},{"className":262},[],[264],{"type":44,"value":265},"\u002Fres\u002Fv1\u002Fchat\u002Fcompletions",{"type":39,"tag":113,"props":267,"children":268},{},[269,274,279],{"type":39,"tag":149,"props":270,"children":271},{},[272],{"type":44,"value":273},"Best for",{"type":39,"tag":149,"props":275,"children":276},{},[277],{"type":44,"value":278},"AI agents, RAG pipelines, tool calls",{"type":39,"tag":149,"props":280,"children":281},{},[282],{"type":44,"value":283},"Chat interfaces, research mode",{"type":39,"tag":98,"props":285,"children":287},{"id":286},"endpoint",[288],{"type":44,"value":247},{"type":39,"tag":290,"props":291,"children":296},"pre",{"className":292,"code":293,"language":294,"meta":295,"style":295},"language-http shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","GET  https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\nPOST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\n","http","",[297],{"type":39,"tag":133,"props":298,"children":299},{"__ignoreMap":295},[300,311],{"type":39,"tag":301,"props":302,"children":305},"span",{"class":303,"line":304},"line",1,[306],{"type":39,"tag":301,"props":307,"children":308},{},[309],{"type":44,"value":310},"GET  https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\n",{"type":39,"tag":301,"props":312,"children":314},{"class":303,"line":313},2,[315],{"type":39,"tag":301,"props":316,"children":317},{},[318],{"type":44,"value":319},"POST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\n",{"type":39,"tag":51,"props":321,"children":322},{},[323,328,330,336],{"type":39,"tag":55,"props":324,"children":325},{},[326],{"type":44,"value":327},"Authentication",{"type":44,"value":329},": ",{"type":39,"tag":133,"props":331,"children":333},{"className":332},[],[334],{"type":44,"value":335},"X-Subscription-Token: \u003CAPI_KEY>",{"type":44,"value":337}," header",{"type":39,"tag":51,"props":339,"children":340},{},[341,346],{"type":39,"tag":55,"props":342,"children":343},{},[344],{"type":44,"value":345},"Optional Headers",{"type":44,"value":347},":",{"type":39,"tag":349,"props":350,"children":351},"ul",{},[352],{"type":39,"tag":353,"props":354,"children":355},"li",{},[356,362],{"type":39,"tag":133,"props":357,"children":359},{"className":358},[],[360],{"type":44,"value":361},"Accept-Encoding: gzip",{"type":44,"value":363}," — Enable gzip compression",{"type":39,"tag":98,"props":365,"children":367},{"id":366},"quick-start",[368],{"type":44,"value":369},"Quick Start",{"type":39,"tag":371,"props":372,"children":374},"h3",{"id":373},"get-request",[375],{"type":44,"value":376},"GET Request",{"type":39,"tag":290,"props":378,"children":382},{"className":379,"code":380,"language":381,"meta":295,"style":295},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext?q=tallest+mountains+in+the+world\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n","bash",[383],{"type":39,"tag":133,"props":384,"children":385},{"__ignoreMap":295},[386,423,448],{"type":39,"tag":301,"props":387,"children":388},{"class":303,"line":304},[389,395,401,407,412,417],{"type":39,"tag":301,"props":390,"children":392},{"style":391},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[393],{"type":44,"value":394},"curl",{"type":39,"tag":301,"props":396,"children":398},{"style":397},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[399],{"type":44,"value":400}," -s",{"type":39,"tag":301,"props":402,"children":404},{"style":403},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[405],{"type":44,"value":406}," \"",{"type":39,"tag":301,"props":408,"children":409},{"style":397},[410],{"type":44,"value":411},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext?q=tallest+mountains+in+the+world",{"type":39,"tag":301,"props":413,"children":414},{"style":403},[415],{"type":44,"value":416},"\"",{"type":39,"tag":301,"props":418,"children":420},{"style":419},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[421],{"type":44,"value":422}," \\\n",{"type":39,"tag":301,"props":424,"children":425},{"class":303,"line":313},[426,431,435,440,444],{"type":39,"tag":301,"props":427,"children":428},{"style":397},[429],{"type":44,"value":430},"  -H",{"type":39,"tag":301,"props":432,"children":433},{"style":403},[434],{"type":44,"value":406},{"type":39,"tag":301,"props":436,"children":437},{"style":397},[438],{"type":44,"value":439},"Accept: application\u002Fjson",{"type":39,"tag":301,"props":441,"children":442},{"style":403},[443],{"type":44,"value":416},{"type":39,"tag":301,"props":445,"children":446},{"style":419},[447],{"type":44,"value":422},{"type":39,"tag":301,"props":449,"children":451},{"class":303,"line":450},3,[452,456,460,465,470,475],{"type":39,"tag":301,"props":453,"children":454},{"style":397},[455],{"type":44,"value":430},{"type":39,"tag":301,"props":457,"children":458},{"style":403},[459],{"type":44,"value":406},{"type":39,"tag":301,"props":461,"children":462},{"style":397},[463],{"type":44,"value":464},"X-Subscription-Token: ",{"type":39,"tag":301,"props":466,"children":467},{"style":403},[468],{"type":44,"value":469},"${",{"type":39,"tag":301,"props":471,"children":472},{"style":419},[473],{"type":44,"value":474},"BRAVE_SEARCH_API_KEY",{"type":39,"tag":301,"props":476,"children":477},{"style":403},[478],{"type":44,"value":479},"}\"\n",{"type":39,"tag":371,"props":481,"children":483},{"id":482},"post-request-json-body",[484],{"type":44,"value":485},"POST Request (JSON body)",{"type":39,"tag":290,"props":487,"children":489},{"className":379,"code":488,"language":381,"meta":295,"style":295},"curl -s --compressed -X POST \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"q\": \"tallest mountains in the world\"}'\n",[490],{"type":39,"tag":133,"props":491,"children":492},{"__ignoreMap":295},[493,536,559,582,615,640],{"type":39,"tag":301,"props":494,"children":495},{"class":303,"line":304},[496,500,504,509,514,519,523,528,532],{"type":39,"tag":301,"props":497,"children":498},{"style":391},[499],{"type":44,"value":394},{"type":39,"tag":301,"props":501,"children":502},{"style":397},[503],{"type":44,"value":400},{"type":39,"tag":301,"props":505,"children":506},{"style":397},[507],{"type":44,"value":508}," --compressed",{"type":39,"tag":301,"props":510,"children":511},{"style":397},[512],{"type":44,"value":513}," -X",{"type":39,"tag":301,"props":515,"children":516},{"style":397},[517],{"type":44,"value":518}," POST",{"type":39,"tag":301,"props":520,"children":521},{"style":403},[522],{"type":44,"value":406},{"type":39,"tag":301,"props":524,"children":525},{"style":397},[526],{"type":44,"value":527},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext",{"type":39,"tag":301,"props":529,"children":530},{"style":403},[531],{"type":44,"value":416},{"type":39,"tag":301,"props":533,"children":534},{"style":419},[535],{"type":44,"value":422},{"type":39,"tag":301,"props":537,"children":538},{"class":303,"line":313},[539,543,547,551,555],{"type":39,"tag":301,"props":540,"children":541},{"style":397},[542],{"type":44,"value":430},{"type":39,"tag":301,"props":544,"children":545},{"style":403},[546],{"type":44,"value":406},{"type":39,"tag":301,"props":548,"children":549},{"style":397},[550],{"type":44,"value":439},{"type":39,"tag":301,"props":552,"children":553},{"style":403},[554],{"type":44,"value":416},{"type":39,"tag":301,"props":556,"children":557},{"style":419},[558],{"type":44,"value":422},{"type":39,"tag":301,"props":560,"children":561},{"class":303,"line":450},[562,566,570,574,578],{"type":39,"tag":301,"props":563,"children":564},{"style":397},[565],{"type":44,"value":430},{"type":39,"tag":301,"props":567,"children":568},{"style":403},[569],{"type":44,"value":406},{"type":39,"tag":301,"props":571,"children":572},{"style":397},[573],{"type":44,"value":361},{"type":39,"tag":301,"props":575,"children":576},{"style":403},[577],{"type":44,"value":416},{"type":39,"tag":301,"props":579,"children":580},{"style":419},[581],{"type":44,"value":422},{"type":39,"tag":301,"props":583,"children":585},{"class":303,"line":584},4,[586,590,594,598,602,606,611],{"type":39,"tag":301,"props":587,"children":588},{"style":397},[589],{"type":44,"value":430},{"type":39,"tag":301,"props":591,"children":592},{"style":403},[593],{"type":44,"value":406},{"type":39,"tag":301,"props":595,"children":596},{"style":397},[597],{"type":44,"value":464},{"type":39,"tag":301,"props":599,"children":600},{"style":403},[601],{"type":44,"value":469},{"type":39,"tag":301,"props":603,"children":604},{"style":419},[605],{"type":44,"value":474},{"type":39,"tag":301,"props":607,"children":608},{"style":403},[609],{"type":44,"value":610},"}\"",{"type":39,"tag":301,"props":612,"children":613},{"style":419},[614],{"type":44,"value":422},{"type":39,"tag":301,"props":616,"children":618},{"class":303,"line":617},5,[619,623,627,632,636],{"type":39,"tag":301,"props":620,"children":621},{"style":397},[622],{"type":44,"value":430},{"type":39,"tag":301,"props":624,"children":625},{"style":403},[626],{"type":44,"value":406},{"type":39,"tag":301,"props":628,"children":629},{"style":397},[630],{"type":44,"value":631},"Content-Type: application\u002Fjson",{"type":39,"tag":301,"props":633,"children":634},{"style":403},[635],{"type":44,"value":416},{"type":39,"tag":301,"props":637,"children":638},{"style":419},[639],{"type":44,"value":422},{"type":39,"tag":301,"props":641,"children":643},{"class":303,"line":642},6,[644,649,654,659],{"type":39,"tag":301,"props":645,"children":646},{"style":397},[647],{"type":44,"value":648},"  -d",{"type":39,"tag":301,"props":650,"children":651},{"style":403},[652],{"type":44,"value":653}," '",{"type":39,"tag":301,"props":655,"children":656},{"style":397},[657],{"type":44,"value":658},"{\"q\": \"tallest mountains in the world\"}",{"type":39,"tag":301,"props":660,"children":661},{"style":403},[662],{"type":44,"value":663},"'\n",{"type":39,"tag":371,"props":665,"children":667},{"id":666},"with-goggles-inline",[668],{"type":44,"value":669},"With Goggles (Inline)",{"type":39,"tag":290,"props":671,"children":673},{"className":379,"code":672,"language":381,"meta":295,"style":295},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=rust programming\" \\\n  --data-urlencode 'goggles=$discard\n$site=docs.rs\n$site=rust-lang.org'\n",[674],{"type":39,"tag":133,"props":675,"children":676},{"__ignoreMap":295},[677,704,727,758,770,795,811,820],{"type":39,"tag":301,"props":678,"children":679},{"class":303,"line":304},[680,684,688,692,696,700],{"type":39,"tag":301,"props":681,"children":682},{"style":391},[683],{"type":44,"value":394},{"type":39,"tag":301,"props":685,"children":686},{"style":397},[687],{"type":44,"value":400},{"type":39,"tag":301,"props":689,"children":690},{"style":403},[691],{"type":44,"value":406},{"type":39,"tag":301,"props":693,"children":694},{"style":397},[695],{"type":44,"value":527},{"type":39,"tag":301,"props":697,"children":698},{"style":403},[699],{"type":44,"value":416},{"type":39,"tag":301,"props":701,"children":702},{"style":419},[703],{"type":44,"value":422},{"type":39,"tag":301,"props":705,"children":706},{"class":303,"line":313},[707,711,715,719,723],{"type":39,"tag":301,"props":708,"children":709},{"style":397},[710],{"type":44,"value":430},{"type":39,"tag":301,"props":712,"children":713},{"style":403},[714],{"type":44,"value":406},{"type":39,"tag":301,"props":716,"children":717},{"style":397},[718],{"type":44,"value":439},{"type":39,"tag":301,"props":720,"children":721},{"style":403},[722],{"type":44,"value":416},{"type":39,"tag":301,"props":724,"children":725},{"style":419},[726],{"type":44,"value":422},{"type":39,"tag":301,"props":728,"children":729},{"class":303,"line":450},[730,734,738,742,746,750,754],{"type":39,"tag":301,"props":731,"children":732},{"style":397},[733],{"type":44,"value":430},{"type":39,"tag":301,"props":735,"children":736},{"style":403},[737],{"type":44,"value":406},{"type":39,"tag":301,"props":739,"children":740},{"style":397},[741],{"type":44,"value":464},{"type":39,"tag":301,"props":743,"children":744},{"style":403},[745],{"type":44,"value":469},{"type":39,"tag":301,"props":747,"children":748},{"style":419},[749],{"type":44,"value":474},{"type":39,"tag":301,"props":751,"children":752},{"style":403},[753],{"type":44,"value":610},{"type":39,"tag":301,"props":755,"children":756},{"style":419},[757],{"type":44,"value":422},{"type":39,"tag":301,"props":759,"children":760},{"class":303,"line":584},[761,766],{"type":39,"tag":301,"props":762,"children":763},{"style":397},[764],{"type":44,"value":765},"  -G",{"type":39,"tag":301,"props":767,"children":768},{"style":419},[769],{"type":44,"value":422},{"type":39,"tag":301,"props":771,"children":772},{"class":303,"line":617},[773,778,782,787,791],{"type":39,"tag":301,"props":774,"children":775},{"style":397},[776],{"type":44,"value":777},"  --data-urlencode",{"type":39,"tag":301,"props":779,"children":780},{"style":403},[781],{"type":44,"value":406},{"type":39,"tag":301,"props":783,"children":784},{"style":397},[785],{"type":44,"value":786},"q=rust programming",{"type":39,"tag":301,"props":788,"children":789},{"style":403},[790],{"type":44,"value":416},{"type":39,"tag":301,"props":792,"children":793},{"style":419},[794],{"type":44,"value":422},{"type":39,"tag":301,"props":796,"children":797},{"class":303,"line":642},[798,802,806],{"type":39,"tag":301,"props":799,"children":800},{"style":397},[801],{"type":44,"value":777},{"type":39,"tag":301,"props":803,"children":804},{"style":403},[805],{"type":44,"value":653},{"type":39,"tag":301,"props":807,"children":808},{"style":397},[809],{"type":44,"value":810},"goggles=$discard\n",{"type":39,"tag":301,"props":812,"children":814},{"class":303,"line":813},7,[815],{"type":39,"tag":301,"props":816,"children":817},{"style":397},[818],{"type":44,"value":819},"$site=docs.rs\n",{"type":39,"tag":301,"props":821,"children":823},{"class":303,"line":822},8,[824,829],{"type":39,"tag":301,"props":825,"children":826},{"style":397},[827],{"type":44,"value":828},"$site=rust-lang.org",{"type":39,"tag":301,"props":830,"children":831},{"style":403},[832],{"type":44,"value":663},{"type":39,"tag":98,"props":834,"children":836},{"id":835},"parameters",[837],{"type":44,"value":838},"Parameters",{"type":39,"tag":371,"props":840,"children":842},{"id":841},"query-parameters",[843],{"type":44,"value":844},"Query Parameters",{"type":39,"tag":105,"props":846,"children":847},{},[848,879],{"type":39,"tag":109,"props":849,"children":850},{},[851],{"type":39,"tag":113,"props":852,"children":853},{},[854,859,864,869,874],{"type":39,"tag":117,"props":855,"children":856},{},[857],{"type":44,"value":858},"Parameter",{"type":39,"tag":117,"props":860,"children":861},{},[862],{"type":44,"value":863},"Type",{"type":39,"tag":117,"props":865,"children":866},{},[867],{"type":44,"value":868},"Required",{"type":39,"tag":117,"props":870,"children":871},{},[872],{"type":44,"value":873},"Default",{"type":39,"tag":117,"props":875,"children":876},{},[877],{"type":44,"value":878},"Description",{"type":39,"tag":142,"props":880,"children":881},{},[882,917,959,993],{"type":39,"tag":113,"props":883,"children":884},{},[885,894,899,907,912],{"type":39,"tag":149,"props":886,"children":887},{},[888],{"type":39,"tag":133,"props":889,"children":891},{"className":890},[],[892],{"type":44,"value":893},"q",{"type":39,"tag":149,"props":895,"children":896},{},[897],{"type":44,"value":898},"string",{"type":39,"tag":149,"props":900,"children":901},{},[902],{"type":39,"tag":55,"props":903,"children":904},{},[905],{"type":44,"value":906},"Yes",{"type":39,"tag":149,"props":908,"children":909},{},[910],{"type":44,"value":911},"-",{"type":39,"tag":149,"props":913,"children":914},{},[915],{"type":44,"value":916},"Search query (1-400 chars, max 50 words)",{"type":39,"tag":113,"props":918,"children":919},{},[920,929,933,938,947],{"type":39,"tag":149,"props":921,"children":922},{},[923],{"type":39,"tag":133,"props":924,"children":926},{"className":925},[],[927],{"type":44,"value":928},"country",{"type":39,"tag":149,"props":930,"children":931},{},[932],{"type":44,"value":898},{"type":39,"tag":149,"props":934,"children":935},{},[936],{"type":44,"value":937},"No",{"type":39,"tag":149,"props":939,"children":940},{},[941],{"type":39,"tag":133,"props":942,"children":944},{"className":943},[],[945],{"type":44,"value":946},"US",{"type":39,"tag":149,"props":948,"children":949},{},[950,952,958],{"type":44,"value":951},"Search country (2-letter country code or ",{"type":39,"tag":133,"props":953,"children":955},{"className":954},[],[956],{"type":44,"value":957},"ALL",{"type":44,"value":140},{"type":39,"tag":113,"props":960,"children":961},{},[962,971,975,979,988],{"type":39,"tag":149,"props":963,"children":964},{},[965],{"type":39,"tag":133,"props":966,"children":968},{"className":967},[],[969],{"type":44,"value":970},"search_lang",{"type":39,"tag":149,"props":972,"children":973},{},[974],{"type":44,"value":898},{"type":39,"tag":149,"props":976,"children":977},{},[978],{"type":44,"value":937},{"type":39,"tag":149,"props":980,"children":981},{},[982],{"type":39,"tag":133,"props":983,"children":985},{"className":984},[],[986],{"type":44,"value":987},"en",{"type":39,"tag":149,"props":989,"children":990},{},[991],{"type":44,"value":992},"Language preference (2+ char language code)",{"type":39,"tag":113,"props":994,"children":995},{},[996,1005,1010,1014,1023],{"type":39,"tag":149,"props":997,"children":998},{},[999],{"type":39,"tag":133,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":44,"value":1004},"count",{"type":39,"tag":149,"props":1006,"children":1007},{},[1008],{"type":44,"value":1009},"int",{"type":39,"tag":149,"props":1011,"children":1012},{},[1013],{"type":44,"value":937},{"type":39,"tag":149,"props":1015,"children":1016},{},[1017],{"type":39,"tag":133,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":44,"value":1022},"20",{"type":39,"tag":149,"props":1024,"children":1025},{},[1026],{"type":44,"value":1027},"Max search results to consider (1-50)",{"type":39,"tag":371,"props":1029,"children":1031},{"id":1030},"context-size-parameters",[1032],{"type":44,"value":1033},"Context Size Parameters",{"type":39,"tag":105,"props":1035,"children":1036},{},[1037,1063],{"type":39,"tag":109,"props":1038,"children":1039},{},[1040],{"type":39,"tag":113,"props":1041,"children":1042},{},[1043,1047,1051,1055,1059],{"type":39,"tag":117,"props":1044,"children":1045},{},[1046],{"type":44,"value":858},{"type":39,"tag":117,"props":1048,"children":1049},{},[1050],{"type":44,"value":863},{"type":39,"tag":117,"props":1052,"children":1053},{},[1054],{"type":44,"value":868},{"type":39,"tag":117,"props":1056,"children":1057},{},[1058],{"type":44,"value":873},{"type":39,"tag":117,"props":1060,"children":1061},{},[1062],{"type":44,"value":878},{"type":39,"tag":142,"props":1064,"children":1065},{},[1066,1099,1133,1167,1201],{"type":39,"tag":113,"props":1067,"children":1068},{},[1069,1078,1082,1086,1094],{"type":39,"tag":149,"props":1070,"children":1071},{},[1072],{"type":39,"tag":133,"props":1073,"children":1075},{"className":1074},[],[1076],{"type":44,"value":1077},"maximum_number_of_urls",{"type":39,"tag":149,"props":1079,"children":1080},{},[1081],{"type":44,"value":1009},{"type":39,"tag":149,"props":1083,"children":1084},{},[1085],{"type":44,"value":937},{"type":39,"tag":149,"props":1087,"children":1088},{},[1089],{"type":39,"tag":133,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":44,"value":1022},{"type":39,"tag":149,"props":1095,"children":1096},{},[1097],{"type":44,"value":1098},"Max URLs in response (1-50)",{"type":39,"tag":113,"props":1100,"children":1101},{},[1102,1111,1115,1119,1128],{"type":39,"tag":149,"props":1103,"children":1104},{},[1105],{"type":39,"tag":133,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":44,"value":1110},"maximum_number_of_tokens",{"type":39,"tag":149,"props":1112,"children":1113},{},[1114],{"type":44,"value":1009},{"type":39,"tag":149,"props":1116,"children":1117},{},[1118],{"type":44,"value":937},{"type":39,"tag":149,"props":1120,"children":1121},{},[1122],{"type":39,"tag":133,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":44,"value":1127},"8192",{"type":39,"tag":149,"props":1129,"children":1130},{},[1131],{"type":44,"value":1132},"Approximate max tokens in context (1024-32768)",{"type":39,"tag":113,"props":1134,"children":1135},{},[1136,1145,1149,1153,1162],{"type":39,"tag":149,"props":1137,"children":1138},{},[1139],{"type":39,"tag":133,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":44,"value":1144},"maximum_number_of_snippets",{"type":39,"tag":149,"props":1146,"children":1147},{},[1148],{"type":44,"value":1009},{"type":39,"tag":149,"props":1150,"children":1151},{},[1152],{"type":44,"value":937},{"type":39,"tag":149,"props":1154,"children":1155},{},[1156],{"type":39,"tag":133,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":44,"value":1161},"50",{"type":39,"tag":149,"props":1163,"children":1164},{},[1165],{"type":44,"value":1166},"Max snippets across all URLs (1-100)",{"type":39,"tag":113,"props":1168,"children":1169},{},[1170,1179,1183,1187,1196],{"type":39,"tag":149,"props":1171,"children":1172},{},[1173],{"type":39,"tag":133,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":44,"value":1178},"maximum_number_of_tokens_per_url",{"type":39,"tag":149,"props":1180,"children":1181},{},[1182],{"type":44,"value":1009},{"type":39,"tag":149,"props":1184,"children":1185},{},[1186],{"type":44,"value":937},{"type":39,"tag":149,"props":1188,"children":1189},{},[1190],{"type":39,"tag":133,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":44,"value":1195},"4096",{"type":39,"tag":149,"props":1197,"children":1198},{},[1199],{"type":44,"value":1200},"Max tokens per individual URL (512-8192)",{"type":39,"tag":113,"props":1202,"children":1203},{},[1204,1213,1217,1221,1229],{"type":39,"tag":149,"props":1205,"children":1206},{},[1207],{"type":39,"tag":133,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":44,"value":1212},"maximum_number_of_snippets_per_url",{"type":39,"tag":149,"props":1214,"children":1215},{},[1216],{"type":44,"value":1009},{"type":39,"tag":149,"props":1218,"children":1219},{},[1220],{"type":44,"value":937},{"type":39,"tag":149,"props":1222,"children":1223},{},[1224],{"type":39,"tag":133,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":44,"value":1161},{"type":39,"tag":149,"props":1230,"children":1231},{},[1232],{"type":44,"value":1233},"Max snippets per individual URL (1-100)",{"type":39,"tag":371,"props":1235,"children":1237},{"id":1236},"filtering-local-parameters",[1238],{"type":44,"value":1239},"Filtering & Local Parameters",{"type":39,"tag":105,"props":1241,"children":1242},{},[1243,1269],{"type":39,"tag":109,"props":1244,"children":1245},{},[1246],{"type":39,"tag":113,"props":1247,"children":1248},{},[1249,1253,1257,1261,1265],{"type":39,"tag":117,"props":1250,"children":1251},{},[1252],{"type":44,"value":858},{"type":39,"tag":117,"props":1254,"children":1255},{},[1256],{"type":44,"value":863},{"type":39,"tag":117,"props":1258,"children":1259},{},[1260],{"type":44,"value":868},{"type":39,"tag":117,"props":1262,"children":1263},{},[1264],{"type":44,"value":873},{"type":39,"tag":117,"props":1266,"children":1267},{},[1268],{"type":44,"value":878},{"type":39,"tag":142,"props":1270,"children":1271},{},[1272,1327,1383],{"type":39,"tag":113,"props":1273,"children":1274},{},[1275,1284,1288,1292,1301],{"type":39,"tag":149,"props":1276,"children":1277},{},[1278],{"type":39,"tag":133,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":44,"value":1283},"context_threshold_mode",{"type":39,"tag":149,"props":1285,"children":1286},{},[1287],{"type":44,"value":898},{"type":39,"tag":149,"props":1289,"children":1290},{},[1291],{"type":44,"value":937},{"type":39,"tag":149,"props":1293,"children":1294},{},[1295],{"type":39,"tag":133,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":44,"value":1300},"balanced",{"type":39,"tag":149,"props":1302,"children":1303},{},[1304,1306,1312,1314,1319,1320,1326],{"type":44,"value":1305},"Relevance threshold for including content (",{"type":39,"tag":133,"props":1307,"children":1309},{"className":1308},[],[1310],{"type":44,"value":1311},"strict",{"type":44,"value":1313},"\u002F",{"type":39,"tag":133,"props":1315,"children":1317},{"className":1316},[],[1318],{"type":44,"value":1300},{"type":44,"value":1313},{"type":39,"tag":133,"props":1321,"children":1323},{"className":1322},[],[1324],{"type":44,"value":1325},"lenient",{"type":44,"value":140},{"type":39,"tag":113,"props":1328,"children":1329},{},[1330,1339,1344,1348,1357],{"type":39,"tag":149,"props":1331,"children":1332},{},[1333],{"type":39,"tag":133,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":44,"value":1338},"enable_local",{"type":39,"tag":149,"props":1340,"children":1341},{},[1342],{"type":44,"value":1343},"bool",{"type":39,"tag":149,"props":1345,"children":1346},{},[1347],{"type":44,"value":937},{"type":39,"tag":149,"props":1349,"children":1350},{},[1351],{"type":39,"tag":133,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":44,"value":1356},"null",{"type":39,"tag":149,"props":1358,"children":1359},{},[1360,1362,1368,1369,1375,1376,1381],{"type":44,"value":1361},"Local recall control (",{"type":39,"tag":133,"props":1363,"children":1365},{"className":1364},[],[1366],{"type":44,"value":1367},"true",{"type":44,"value":1313},{"type":39,"tag":133,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":44,"value":1374},"false",{"type":44,"value":1313},{"type":39,"tag":133,"props":1377,"children":1379},{"className":1378},[],[1380],{"type":44,"value":1356},{"type":44,"value":1382},", see below)",{"type":39,"tag":113,"props":1384,"children":1385},{},[1386,1395,1400,1404,1412],{"type":39,"tag":149,"props":1387,"children":1388},{},[1389],{"type":39,"tag":133,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":44,"value":1394},"goggles",{"type":39,"tag":149,"props":1396,"children":1397},{},[1398],{"type":44,"value":1399},"string\u002Flist",{"type":39,"tag":149,"props":1401,"children":1402},{},[1403],{"type":44,"value":937},{"type":39,"tag":149,"props":1405,"children":1406},{},[1407],{"type":39,"tag":133,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":44,"value":1356},{"type":39,"tag":149,"props":1413,"children":1414},{},[1415],{"type":44,"value":1416},"Goggle URL or inline definition for custom re-ranking",{"type":39,"tag":98,"props":1418,"children":1420},{"id":1419},"context-size-guidelines",[1421],{"type":44,"value":1422},"Context Size Guidelines",{"type":39,"tag":105,"props":1424,"children":1425},{},[1426,1451],{"type":39,"tag":109,"props":1427,"children":1428},{},[1429],{"type":39,"tag":113,"props":1430,"children":1431},{},[1432,1437,1441,1446],{"type":39,"tag":117,"props":1433,"children":1434},{},[1435],{"type":44,"value":1436},"Task Type",{"type":39,"tag":117,"props":1438,"children":1439},{},[1440],{"type":44,"value":1004},{"type":39,"tag":117,"props":1442,"children":1443},{},[1444],{"type":44,"value":1445},"max_tokens",{"type":39,"tag":117,"props":1447,"children":1448},{},[1449],{"type":44,"value":1450},"Example",{"type":39,"tag":142,"props":1452,"children":1453},{},[1454,1477,1498],{"type":39,"tag":113,"props":1455,"children":1456},{},[1457,1462,1467,1472],{"type":39,"tag":149,"props":1458,"children":1459},{},[1460],{"type":44,"value":1461},"Simple factual",{"type":39,"tag":149,"props":1463,"children":1464},{},[1465],{"type":44,"value":1466},"5",{"type":39,"tag":149,"props":1468,"children":1469},{},[1470],{"type":44,"value":1471},"2048",{"type":39,"tag":149,"props":1473,"children":1474},{},[1475],{"type":44,"value":1476},"\"What year was Python created?\"",{"type":39,"tag":113,"props":1478,"children":1479},{},[1480,1485,1489,1493],{"type":39,"tag":149,"props":1481,"children":1482},{},[1483],{"type":44,"value":1484},"Standard queries",{"type":39,"tag":149,"props":1486,"children":1487},{},[1488],{"type":44,"value":1022},{"type":39,"tag":149,"props":1490,"children":1491},{},[1492],{"type":44,"value":1127},{"type":39,"tag":149,"props":1494,"children":1495},{},[1496],{"type":44,"value":1497},"\"Best practices for React hooks\"",{"type":39,"tag":113,"props":1499,"children":1500},{},[1501,1506,1510,1515],{"type":39,"tag":149,"props":1502,"children":1503},{},[1504],{"type":44,"value":1505},"Complex research",{"type":39,"tag":149,"props":1507,"children":1508},{},[1509],{"type":44,"value":1161},{"type":39,"tag":149,"props":1511,"children":1512},{},[1513],{"type":44,"value":1514},"16384",{"type":39,"tag":149,"props":1516,"children":1517},{},[1518],{"type":44,"value":1519},"\"Compare AI frameworks for production\"",{"type":39,"tag":51,"props":1521,"children":1522},{},[1523],{"type":44,"value":1524},"Larger context windows provide more information but increase latency and cost (of your inference). Start with defaults and adjust.",{"type":39,"tag":98,"props":1526,"children":1528},{"id":1527},"threshold-modes",[1529],{"type":44,"value":1530},"Threshold Modes",{"type":39,"tag":105,"props":1532,"children":1533},{},[1534,1550],{"type":39,"tag":109,"props":1535,"children":1536},{},[1537],{"type":39,"tag":113,"props":1538,"children":1539},{},[1540,1545],{"type":39,"tag":117,"props":1541,"children":1542},{},[1543],{"type":44,"value":1544},"Mode",{"type":39,"tag":117,"props":1546,"children":1547},{},[1548],{"type":44,"value":1549},"Behavior",{"type":39,"tag":142,"props":1551,"children":1552},{},[1553,1569,1585],{"type":39,"tag":113,"props":1554,"children":1555},{},[1556,1564],{"type":39,"tag":149,"props":1557,"children":1558},{},[1559],{"type":39,"tag":133,"props":1560,"children":1562},{"className":1561},[],[1563],{"type":44,"value":1311},{"type":39,"tag":149,"props":1565,"children":1566},{},[1567],{"type":44,"value":1568},"Higher threshold — fewer but more relevant results",{"type":39,"tag":113,"props":1570,"children":1571},{},[1572,1580],{"type":39,"tag":149,"props":1573,"children":1574},{},[1575],{"type":39,"tag":133,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":44,"value":1300},{"type":39,"tag":149,"props":1581,"children":1582},{},[1583],{"type":44,"value":1584},"Default — good balance between coverage and relevance",{"type":39,"tag":113,"props":1586,"children":1587},{},[1588,1596],{"type":39,"tag":149,"props":1589,"children":1590},{},[1591],{"type":39,"tag":133,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":44,"value":1325},{"type":39,"tag":149,"props":1597,"children":1598},{},[1599],{"type":44,"value":1600},"Lower threshold — more results, may include less relevant content",{"type":39,"tag":98,"props":1602,"children":1604},{"id":1603},"local-recall",[1605],{"type":44,"value":1606},"Local Recall",{"type":39,"tag":51,"props":1608,"children":1609},{},[1610,1612,1617],{"type":44,"value":1611},"The ",{"type":39,"tag":133,"props":1613,"children":1615},{"className":1614},[],[1616],{"type":44,"value":1338},{"type":44,"value":1618}," parameter controls location-aware recall:",{"type":39,"tag":105,"props":1620,"children":1621},{},[1622,1637],{"type":39,"tag":109,"props":1623,"children":1624},{},[1625],{"type":39,"tag":113,"props":1626,"children":1627},{},[1628,1633],{"type":39,"tag":117,"props":1629,"children":1630},{},[1631],{"type":44,"value":1632},"Value",{"type":39,"tag":117,"props":1634,"children":1635},{},[1636],{"type":44,"value":1549},{"type":39,"tag":142,"props":1638,"children":1639},{},[1640,1663,1684],{"type":39,"tag":113,"props":1641,"children":1642},{},[1643,1653],{"type":39,"tag":149,"props":1644,"children":1645},{},[1646,1651],{"type":39,"tag":133,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":44,"value":1356},{"type":44,"value":1652}," (not set)",{"type":39,"tag":149,"props":1654,"children":1655},{},[1656,1661],{"type":39,"tag":55,"props":1657,"children":1658},{},[1659],{"type":44,"value":1660},"Auto-detect",{"type":44,"value":1662}," — local recall enabled when any location header is provided",{"type":39,"tag":113,"props":1664,"children":1665},{},[1666,1674],{"type":39,"tag":149,"props":1667,"children":1668},{},[1669],{"type":39,"tag":133,"props":1670,"children":1672},{"className":1671},[],[1673],{"type":44,"value":1367},{"type":39,"tag":149,"props":1675,"children":1676},{},[1677,1682],{"type":39,"tag":55,"props":1678,"children":1679},{},[1680],{"type":44,"value":1681},"Force local",{"type":44,"value":1683}," — always use local recall, even without location headers",{"type":39,"tag":113,"props":1685,"children":1686},{},[1687,1695],{"type":39,"tag":149,"props":1688,"children":1689},{},[1690],{"type":39,"tag":133,"props":1691,"children":1693},{"className":1692},[],[1694],{"type":44,"value":1374},{"type":39,"tag":149,"props":1696,"children":1697},{},[1698,1703],{"type":39,"tag":55,"props":1699,"children":1700},{},[1701],{"type":44,"value":1702},"Force standard",{"type":44,"value":1704}," — always use standard web ranking, even with location headers",{"type":39,"tag":51,"props":1706,"children":1707},{},[1708,1710,1715],{"type":44,"value":1709},"For most use cases, omit ",{"type":39,"tag":133,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":44,"value":1338},{"type":44,"value":1716}," and let the API auto-detect from location headers.",{"type":39,"tag":98,"props":1718,"children":1720},{"id":1719},"location-headers",[1721],{"type":44,"value":1722},"Location Headers",{"type":39,"tag":105,"props":1724,"children":1725},{},[1726,1745],{"type":39,"tag":109,"props":1727,"children":1728},{},[1729],{"type":39,"tag":113,"props":1730,"children":1731},{},[1732,1737,1741],{"type":39,"tag":117,"props":1733,"children":1734},{},[1735],{"type":44,"value":1736},"Header",{"type":39,"tag":117,"props":1738,"children":1739},{},[1740],{"type":44,"value":863},{"type":39,"tag":117,"props":1742,"children":1743},{},[1744],{"type":44,"value":878},{"type":39,"tag":142,"props":1746,"children":1747},{},[1748,1770,1791,1812,1833,1854,1875],{"type":39,"tag":113,"props":1749,"children":1750},{},[1751,1760,1765],{"type":39,"tag":149,"props":1752,"children":1753},{},[1754],{"type":39,"tag":133,"props":1755,"children":1757},{"className":1756},[],[1758],{"type":44,"value":1759},"X-Loc-Lat",{"type":39,"tag":149,"props":1761,"children":1762},{},[1763],{"type":44,"value":1764},"float",{"type":39,"tag":149,"props":1766,"children":1767},{},[1768],{"type":44,"value":1769},"Latitude (-90.0 to 90.0)",{"type":39,"tag":113,"props":1771,"children":1772},{},[1773,1782,1786],{"type":39,"tag":149,"props":1774,"children":1775},{},[1776],{"type":39,"tag":133,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":44,"value":1781},"X-Loc-Long",{"type":39,"tag":149,"props":1783,"children":1784},{},[1785],{"type":44,"value":1764},{"type":39,"tag":149,"props":1787,"children":1788},{},[1789],{"type":44,"value":1790},"Longitude (-180.0 to 180.0)",{"type":39,"tag":113,"props":1792,"children":1793},{},[1794,1803,1807],{"type":39,"tag":149,"props":1795,"children":1796},{},[1797],{"type":39,"tag":133,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":44,"value":1802},"X-Loc-City",{"type":39,"tag":149,"props":1804,"children":1805},{},[1806],{"type":44,"value":898},{"type":39,"tag":149,"props":1808,"children":1809},{},[1810],{"type":44,"value":1811},"City name",{"type":39,"tag":113,"props":1813,"children":1814},{},[1815,1824,1828],{"type":39,"tag":149,"props":1816,"children":1817},{},[1818],{"type":39,"tag":133,"props":1819,"children":1821},{"className":1820},[],[1822],{"type":44,"value":1823},"X-Loc-State",{"type":39,"tag":149,"props":1825,"children":1826},{},[1827],{"type":44,"value":898},{"type":39,"tag":149,"props":1829,"children":1830},{},[1831],{"type":44,"value":1832},"State\u002Fregion code (ISO 3166-2)",{"type":39,"tag":113,"props":1834,"children":1835},{},[1836,1845,1849],{"type":39,"tag":149,"props":1837,"children":1838},{},[1839],{"type":39,"tag":133,"props":1840,"children":1842},{"className":1841},[],[1843],{"type":44,"value":1844},"X-Loc-State-Name",{"type":39,"tag":149,"props":1846,"children":1847},{},[1848],{"type":44,"value":898},{"type":39,"tag":149,"props":1850,"children":1851},{},[1852],{"type":44,"value":1853},"State\u002Fregion name",{"type":39,"tag":113,"props":1855,"children":1856},{},[1857,1866,1870],{"type":39,"tag":149,"props":1858,"children":1859},{},[1860],{"type":39,"tag":133,"props":1861,"children":1863},{"className":1862},[],[1864],{"type":44,"value":1865},"X-Loc-Country",{"type":39,"tag":149,"props":1867,"children":1868},{},[1869],{"type":44,"value":898},{"type":39,"tag":149,"props":1871,"children":1872},{},[1873],{"type":44,"value":1874},"2-letter country code",{"type":39,"tag":113,"props":1876,"children":1877},{},[1878,1887,1891],{"type":39,"tag":149,"props":1879,"children":1880},{},[1881],{"type":39,"tag":133,"props":1882,"children":1884},{"className":1883},[],[1885],{"type":44,"value":1886},"X-Loc-Postal-Code",{"type":39,"tag":149,"props":1888,"children":1889},{},[1890],{"type":44,"value":898},{"type":39,"tag":149,"props":1892,"children":1893},{},[1894],{"type":44,"value":1895},"Postal code",{"type":39,"tag":47,"props":1897,"children":1898},{},[1899],{"type":39,"tag":51,"props":1900,"children":1901},{},[1902,1907,1908,1913,1915,1920,1922,1927],{"type":39,"tag":55,"props":1903,"children":1904},{},[1905],{"type":44,"value":1906},"Priority",{"type":44,"value":329},{"type":39,"tag":133,"props":1909,"children":1911},{"className":1910},[],[1912],{"type":44,"value":1759},{"type":44,"value":1914}," + ",{"type":39,"tag":133,"props":1916,"children":1918},{"className":1917},[],[1919],{"type":44,"value":1781},{"type":44,"value":1921}," take precedence. When provided, text-based headers (City, State, Country, Postal-Code) are not used for location resolution. Provide text-based headers ",{"type":39,"tag":55,"props":1923,"children":1924},{},[1925],{"type":44,"value":1926},"only",{"type":44,"value":1928}," when you don't have coordinates.",{"type":39,"tag":371,"props":1930,"children":1932},{"id":1931},"example-with-coordinates",[1933],{"type":44,"value":1934},"Example: With Coordinates",{"type":39,"tag":290,"props":1936,"children":1938},{"className":379,"code":1937,"language":381,"meta":295,"style":295},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\" \\\n  -G \\\n  --data-urlencode \"q=best coffee shops near me\"\n",[1939],{"type":39,"tag":133,"props":1940,"children":1941},{"__ignoreMap":295},[1942,1969,1992,2023,2047,2071,2082],{"type":39,"tag":301,"props":1943,"children":1944},{"class":303,"line":304},[1945,1949,1953,1957,1961,1965],{"type":39,"tag":301,"props":1946,"children":1947},{"style":391},[1948],{"type":44,"value":394},{"type":39,"tag":301,"props":1950,"children":1951},{"style":397},[1952],{"type":44,"value":400},{"type":39,"tag":301,"props":1954,"children":1955},{"style":403},[1956],{"type":44,"value":406},{"type":39,"tag":301,"props":1958,"children":1959},{"style":397},[1960],{"type":44,"value":527},{"type":39,"tag":301,"props":1962,"children":1963},{"style":403},[1964],{"type":44,"value":416},{"type":39,"tag":301,"props":1966,"children":1967},{"style":419},[1968],{"type":44,"value":422},{"type":39,"tag":301,"props":1970,"children":1971},{"class":303,"line":313},[1972,1976,1980,1984,1988],{"type":39,"tag":301,"props":1973,"children":1974},{"style":397},[1975],{"type":44,"value":430},{"type":39,"tag":301,"props":1977,"children":1978},{"style":403},[1979],{"type":44,"value":406},{"type":39,"tag":301,"props":1981,"children":1982},{"style":397},[1983],{"type":44,"value":439},{"type":39,"tag":301,"props":1985,"children":1986},{"style":403},[1987],{"type":44,"value":416},{"type":39,"tag":301,"props":1989,"children":1990},{"style":419},[1991],{"type":44,"value":422},{"type":39,"tag":301,"props":1993,"children":1994},{"class":303,"line":450},[1995,1999,2003,2007,2011,2015,2019],{"type":39,"tag":301,"props":1996,"children":1997},{"style":397},[1998],{"type":44,"value":430},{"type":39,"tag":301,"props":2000,"children":2001},{"style":403},[2002],{"type":44,"value":406},{"type":39,"tag":301,"props":2004,"children":2005},{"style":397},[2006],{"type":44,"value":464},{"type":39,"tag":301,"props":2008,"children":2009},{"style":403},[2010],{"type":44,"value":469},{"type":39,"tag":301,"props":2012,"children":2013},{"style":419},[2014],{"type":44,"value":474},{"type":39,"tag":301,"props":2016,"children":2017},{"style":403},[2018],{"type":44,"value":610},{"type":39,"tag":301,"props":2020,"children":2021},{"style":419},[2022],{"type":44,"value":422},{"type":39,"tag":301,"props":2024,"children":2025},{"class":303,"line":584},[2026,2030,2034,2039,2043],{"type":39,"tag":301,"props":2027,"children":2028},{"style":397},[2029],{"type":44,"value":430},{"type":39,"tag":301,"props":2031,"children":2032},{"style":403},[2033],{"type":44,"value":406},{"type":39,"tag":301,"props":2035,"children":2036},{"style":397},[2037],{"type":44,"value":2038},"X-Loc-Lat: 37.7749",{"type":39,"tag":301,"props":2040,"children":2041},{"style":403},[2042],{"type":44,"value":416},{"type":39,"tag":301,"props":2044,"children":2045},{"style":419},[2046],{"type":44,"value":422},{"type":39,"tag":301,"props":2048,"children":2049},{"class":303,"line":617},[2050,2054,2058,2063,2067],{"type":39,"tag":301,"props":2051,"children":2052},{"style":397},[2053],{"type":44,"value":430},{"type":39,"tag":301,"props":2055,"children":2056},{"style":403},[2057],{"type":44,"value":406},{"type":39,"tag":301,"props":2059,"children":2060},{"style":397},[2061],{"type":44,"value":2062},"X-Loc-Long: -122.4194",{"type":39,"tag":301,"props":2064,"children":2065},{"style":403},[2066],{"type":44,"value":416},{"type":39,"tag":301,"props":2068,"children":2069},{"style":419},[2070],{"type":44,"value":422},{"type":39,"tag":301,"props":2072,"children":2073},{"class":303,"line":642},[2074,2078],{"type":39,"tag":301,"props":2075,"children":2076},{"style":397},[2077],{"type":44,"value":765},{"type":39,"tag":301,"props":2079,"children":2080},{"style":419},[2081],{"type":44,"value":422},{"type":39,"tag":301,"props":2083,"children":2084},{"class":303,"line":813},[2085,2089,2093,2098],{"type":39,"tag":301,"props":2086,"children":2087},{"style":397},[2088],{"type":44,"value":777},{"type":39,"tag":301,"props":2090,"children":2091},{"style":403},[2092],{"type":44,"value":406},{"type":39,"tag":301,"props":2094,"children":2095},{"style":397},[2096],{"type":44,"value":2097},"q=best coffee shops near me",{"type":39,"tag":301,"props":2099,"children":2100},{"style":403},[2101],{"type":44,"value":2102},"\"\n",{"type":39,"tag":371,"props":2104,"children":2106},{"id":2105},"example-with-place-name",[2107],{"type":44,"value":2108},"Example: With Place Name",{"type":39,"tag":290,"props":2110,"children":2112},{"className":379,"code":2111,"language":381,"meta":295,"style":295},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fllm\u002Fcontext\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-City: San Francisco\" \\\n  -H \"X-Loc-State: CA\" \\\n  -H \"X-Loc-Country: US\" \\\n  -G \\\n  --data-urlencode \"q=best coffee shops near me\"\n",[2113],{"type":39,"tag":133,"props":2114,"children":2115},{"__ignoreMap":295},[2116,2143,2166,2197,2221,2245,2269,2280],{"type":39,"tag":301,"props":2117,"children":2118},{"class":303,"line":304},[2119,2123,2127,2131,2135,2139],{"type":39,"tag":301,"props":2120,"children":2121},{"style":391},[2122],{"type":44,"value":394},{"type":39,"tag":301,"props":2124,"children":2125},{"style":397},[2126],{"type":44,"value":400},{"type":39,"tag":301,"props":2128,"children":2129},{"style":403},[2130],{"type":44,"value":406},{"type":39,"tag":301,"props":2132,"children":2133},{"style":397},[2134],{"type":44,"value":527},{"type":39,"tag":301,"props":2136,"children":2137},{"style":403},[2138],{"type":44,"value":416},{"type":39,"tag":301,"props":2140,"children":2141},{"style":419},[2142],{"type":44,"value":422},{"type":39,"tag":301,"props":2144,"children":2145},{"class":303,"line":313},[2146,2150,2154,2158,2162],{"type":39,"tag":301,"props":2147,"children":2148},{"style":397},[2149],{"type":44,"value":430},{"type":39,"tag":301,"props":2151,"children":2152},{"style":403},[2153],{"type":44,"value":406},{"type":39,"tag":301,"props":2155,"children":2156},{"style":397},[2157],{"type":44,"value":439},{"type":39,"tag":301,"props":2159,"children":2160},{"style":403},[2161],{"type":44,"value":416},{"type":39,"tag":301,"props":2163,"children":2164},{"style":419},[2165],{"type":44,"value":422},{"type":39,"tag":301,"props":2167,"children":2168},{"class":303,"line":450},[2169,2173,2177,2181,2185,2189,2193],{"type":39,"tag":301,"props":2170,"children":2171},{"style":397},[2172],{"type":44,"value":430},{"type":39,"tag":301,"props":2174,"children":2175},{"style":403},[2176],{"type":44,"value":406},{"type":39,"tag":301,"props":2178,"children":2179},{"style":397},[2180],{"type":44,"value":464},{"type":39,"tag":301,"props":2182,"children":2183},{"style":403},[2184],{"type":44,"value":469},{"type":39,"tag":301,"props":2186,"children":2187},{"style":419},[2188],{"type":44,"value":474},{"type":39,"tag":301,"props":2190,"children":2191},{"style":403},[2192],{"type":44,"value":610},{"type":39,"tag":301,"props":2194,"children":2195},{"style":419},[2196],{"type":44,"value":422},{"type":39,"tag":301,"props":2198,"children":2199},{"class":303,"line":584},[2200,2204,2208,2213,2217],{"type":39,"tag":301,"props":2201,"children":2202},{"style":397},[2203],{"type":44,"value":430},{"type":39,"tag":301,"props":2205,"children":2206},{"style":403},[2207],{"type":44,"value":406},{"type":39,"tag":301,"props":2209,"children":2210},{"style":397},[2211],{"type":44,"value":2212},"X-Loc-City: San Francisco",{"type":39,"tag":301,"props":2214,"children":2215},{"style":403},[2216],{"type":44,"value":416},{"type":39,"tag":301,"props":2218,"children":2219},{"style":419},[2220],{"type":44,"value":422},{"type":39,"tag":301,"props":2222,"children":2223},{"class":303,"line":617},[2224,2228,2232,2237,2241],{"type":39,"tag":301,"props":2225,"children":2226},{"style":397},[2227],{"type":44,"value":430},{"type":39,"tag":301,"props":2229,"children":2230},{"style":403},[2231],{"type":44,"value":406},{"type":39,"tag":301,"props":2233,"children":2234},{"style":397},[2235],{"type":44,"value":2236},"X-Loc-State: CA",{"type":39,"tag":301,"props":2238,"children":2239},{"style":403},[2240],{"type":44,"value":416},{"type":39,"tag":301,"props":2242,"children":2243},{"style":419},[2244],{"type":44,"value":422},{"type":39,"tag":301,"props":2246,"children":2247},{"class":303,"line":642},[2248,2252,2256,2261,2265],{"type":39,"tag":301,"props":2249,"children":2250},{"style":397},[2251],{"type":44,"value":430},{"type":39,"tag":301,"props":2253,"children":2254},{"style":403},[2255],{"type":44,"value":406},{"type":39,"tag":301,"props":2257,"children":2258},{"style":397},[2259],{"type":44,"value":2260},"X-Loc-Country: US",{"type":39,"tag":301,"props":2262,"children":2263},{"style":403},[2264],{"type":44,"value":416},{"type":39,"tag":301,"props":2266,"children":2267},{"style":419},[2268],{"type":44,"value":422},{"type":39,"tag":301,"props":2270,"children":2271},{"class":303,"line":813},[2272,2276],{"type":39,"tag":301,"props":2273,"children":2274},{"style":397},[2275],{"type":44,"value":765},{"type":39,"tag":301,"props":2277,"children":2278},{"style":419},[2279],{"type":44,"value":422},{"type":39,"tag":301,"props":2281,"children":2282},{"class":303,"line":822},[2283,2287,2291,2295],{"type":39,"tag":301,"props":2284,"children":2285},{"style":397},[2286],{"type":44,"value":777},{"type":39,"tag":301,"props":2288,"children":2289},{"style":403},[2290],{"type":44,"value":406},{"type":39,"tag":301,"props":2292,"children":2293},{"style":397},[2294],{"type":44,"value":2097},{"type":39,"tag":301,"props":2296,"children":2297},{"style":403},[2298],{"type":44,"value":2102},{"type":39,"tag":98,"props":2300,"children":2302},{"id":2301},"goggles-custom-ranking-unique-to-brave",[2303],{"type":44,"value":2304},"Goggles (Custom Ranking) — Unique to Brave",{"type":39,"tag":51,"props":2306,"children":2307},{},[2308,2310,2315],{"type":44,"value":2309},"Goggles let you ",{"type":39,"tag":55,"props":2311,"children":2312},{},[2313],{"type":44,"value":2314},"control which sources ground your LLM",{"type":44,"value":2316}," — essential for RAG quality.",{"type":39,"tag":105,"props":2318,"children":2319},{},[2320,2336],{"type":39,"tag":109,"props":2321,"children":2322},{},[2323],{"type":39,"tag":113,"props":2324,"children":2325},{},[2326,2331],{"type":39,"tag":117,"props":2327,"children":2328},{},[2329],{"type":44,"value":2330},"Use Case",{"type":39,"tag":117,"props":2332,"children":2333},{},[2334],{"type":44,"value":2335},"Goggle Rules",{"type":39,"tag":142,"props":2337,"children":2338},{},[2339,2356,2373,2390],{"type":39,"tag":113,"props":2340,"children":2341},{},[2342,2347],{"type":39,"tag":149,"props":2343,"children":2344},{},[2345],{"type":44,"value":2346},"Official docs only",{"type":39,"tag":149,"props":2348,"children":2349},{},[2350],{"type":39,"tag":133,"props":2351,"children":2353},{"className":2352},[],[2354],{"type":44,"value":2355},"$discard\\n$site=docs.python.org",{"type":39,"tag":113,"props":2357,"children":2358},{},[2359,2364],{"type":39,"tag":149,"props":2360,"children":2361},{},[2362],{"type":44,"value":2363},"Exclude user content",{"type":39,"tag":149,"props":2365,"children":2366},{},[2367],{"type":39,"tag":133,"props":2368,"children":2370},{"className":2369},[],[2371],{"type":44,"value":2372},"$discard,site=reddit.com\\n$discard,site=stackoverflow.com",{"type":39,"tag":113,"props":2374,"children":2375},{},[2376,2381],{"type":39,"tag":149,"props":2377,"children":2378},{},[2379],{"type":44,"value":2380},"Academic sources",{"type":39,"tag":149,"props":2382,"children":2383},{},[2384],{"type":39,"tag":133,"props":2385,"children":2387},{"className":2386},[],[2388],{"type":44,"value":2389},"$discard\\n$site=arxiv.org\\n$site=.edu",{"type":39,"tag":113,"props":2391,"children":2392},{},[2393,2398],{"type":39,"tag":149,"props":2394,"children":2395},{},[2396],{"type":44,"value":2397},"No paywalls",{"type":39,"tag":149,"props":2399,"children":2400},{},[2401],{"type":39,"tag":133,"props":2402,"children":2404},{"className":2403},[],[2405],{"type":44,"value":2406},"$discard,site=medium.com",{"type":39,"tag":105,"props":2408,"children":2409},{},[2410,2425],{"type":39,"tag":109,"props":2411,"children":2412},{},[2413],{"type":39,"tag":113,"props":2414,"children":2415},{},[2416,2421],{"type":39,"tag":117,"props":2417,"children":2418},{},[2419],{"type":44,"value":2420},"Method",{"type":39,"tag":117,"props":2422,"children":2423},{},[2424],{"type":44,"value":1450},{"type":39,"tag":142,"props":2426,"children":2427},{},[2428,2448],{"type":39,"tag":113,"props":2429,"children":2430},{},[2431,2439],{"type":39,"tag":149,"props":2432,"children":2433},{},[2434],{"type":39,"tag":55,"props":2435,"children":2436},{},[2437],{"type":44,"value":2438},"Hosted",{"type":39,"tag":149,"props":2440,"children":2441},{},[2442],{"type":39,"tag":133,"props":2443,"children":2445},{"className":2444},[],[2446],{"type":44,"value":2447},"--data-urlencode \"goggles=https:\u002F\u002Fraw.githubusercontent.com\u002Fbrave\u002Fgoggles-quickstart\u002Fmain\u002Fgoggles\u002F1k_short.goggle\"",{"type":39,"tag":113,"props":2449,"children":2450},{},[2451,2459],{"type":39,"tag":149,"props":2452,"children":2453},{},[2454],{"type":39,"tag":55,"props":2455,"children":2456},{},[2457],{"type":44,"value":2458},"Inline",{"type":39,"tag":149,"props":2460,"children":2461},{},[2462],{"type":39,"tag":133,"props":2463,"children":2465},{"className":2464},[],[2466],{"type":44,"value":2467},"--data-urlencode 'goggles=$discard\\n$site=example.com'",{"type":39,"tag":47,"props":2469,"children":2470},{},[2471],{"type":39,"tag":51,"props":2472,"children":2473},{},[2474,2478,2480,2486,2488,2494,2495,2501,2503,2509,2511,2515],{"type":39,"tag":55,"props":2475,"children":2476},{},[2477],{"type":44,"value":2438},{"type":44,"value":2479}," goggles must be on GitHub\u002FGitLab, include ",{"type":39,"tag":133,"props":2481,"children":2483},{"className":2482},[],[2484],{"type":44,"value":2485},"! name:",{"type":44,"value":2487},", ",{"type":39,"tag":133,"props":2489,"children":2491},{"className":2490},[],[2492],{"type":44,"value":2493},"! description:",{"type":44,"value":2487},{"type":39,"tag":133,"props":2496,"children":2498},{"className":2497},[],[2499],{"type":44,"value":2500},"! author:",{"type":44,"value":2502}," headers, and be registered at ",{"type":39,"tag":63,"props":2504,"children":2507},{"href":2505,"rel":2506},"https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fcreate",[67],[2508],{"type":44,"value":2505},{"type":44,"value":2510},". ",{"type":39,"tag":55,"props":2512,"children":2513},{},[2514],{"type":44,"value":2458},{"type":44,"value":2516}," rules need no registration.",{"type":39,"tag":51,"props":2518,"children":2519},{},[2520,2525,2526,2532,2534,2540,2542,2548,2549,2555,2557,2563,2565,2571,2573,2579],{"type":39,"tag":55,"props":2521,"children":2522},{},[2523],{"type":44,"value":2524},"Syntax",{"type":44,"value":329},{"type":39,"tag":133,"props":2527,"children":2529},{"className":2528},[],[2530],{"type":44,"value":2531},"$boost=N",{"type":44,"value":2533}," \u002F ",{"type":39,"tag":133,"props":2535,"children":2537},{"className":2536},[],[2538],{"type":44,"value":2539},"$downrank=N",{"type":44,"value":2541}," (1–10), ",{"type":39,"tag":133,"props":2543,"children":2545},{"className":2544},[],[2546],{"type":44,"value":2547},"$discard",{"type":44,"value":2487},{"type":39,"tag":133,"props":2550,"children":2552},{"className":2551},[],[2553],{"type":44,"value":2554},"$site=example.com",{"type":44,"value":2556},". Combine with commas: ",{"type":39,"tag":133,"props":2558,"children":2560},{"className":2559},[],[2561],{"type":44,"value":2562},"$site=example.com,boost=3",{"type":44,"value":2564},". Separate rules with ",{"type":39,"tag":133,"props":2566,"children":2568},{"className":2567},[],[2569],{"type":44,"value":2570},"\\n",{"type":44,"value":2572}," (",{"type":39,"tag":133,"props":2574,"children":2576},{"className":2575},[],[2577],{"type":44,"value":2578},"%0A",{"type":44,"value":2580},").",{"type":39,"tag":51,"props":2582,"children":2583},{},[2584,2589,2590,2596,2598,2603,2604],{"type":39,"tag":55,"props":2585,"children":2586},{},[2587],{"type":44,"value":2588},"Allow list",{"type":44,"value":329},{"type":39,"tag":133,"props":2591,"children":2593},{"className":2592},[],[2594],{"type":44,"value":2595},"$discard\\n$site=docs.python.org\\n$site=developer.mozilla.org",{"type":44,"value":2597}," — ",{"type":39,"tag":55,"props":2599,"children":2600},{},[2601],{"type":44,"value":2602},"Block list",{"type":44,"value":329},{"type":39,"tag":133,"props":2605,"children":2607},{"className":2606},[],[2608],{"type":44,"value":2609},"$discard,site=pinterest.com\\n$discard,site=quora.com",{"type":39,"tag":51,"props":2611,"children":2612},{},[2613,2618,2619,2626,2628,2634,2635],{"type":39,"tag":55,"props":2614,"children":2615},{},[2616],{"type":44,"value":2617},"Resources",{"type":44,"value":329},{"type":39,"tag":63,"props":2620,"children":2623},{"href":2621,"rel":2622},"https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fdiscover",[67],[2624],{"type":44,"value":2625},"Discover",{"type":44,"value":2627}," · ",{"type":39,"tag":63,"props":2629,"children":2632},{"href":2630,"rel":2631},"https:\u002F\u002Fsearch.brave.com\u002Fhelp\u002Fgoggles",[67],[2633],{"type":44,"value":2524},{"type":44,"value":2627},{"type":39,"tag":63,"props":2636,"children":2639},{"href":2637,"rel":2638},"https:\u002F\u002Fgithub.com\u002Fbrave\u002Fgoggles-quickstart",[67],[2640],{"type":44,"value":2641},"Quickstart",{"type":39,"tag":98,"props":2643,"children":2645},{"id":2644},"response-format",[2646],{"type":44,"value":2647},"Response Format",{"type":39,"tag":371,"props":2649,"children":2651},{"id":2650},"standard-response",[2652],{"type":44,"value":2653},"Standard Response",{"type":39,"tag":290,"props":2655,"children":2659},{"className":2656,"code":2657,"language":2658,"meta":295,"style":295},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"grounding\": {\n    \"generic\": [\n      {\n        \"url\": \"https:\u002F\u002Fexample.com\u002Fpage\",\n        \"title\": \"Page Title\",\n        \"snippets\": [\n          \"Relevant text chunk extracted from the page...\",\n          \"Another relevant passage from the same page...\"\n        ]\n      }\n    ],\n    \"map\": []\n  },\n  \"sources\": {\n    \"https:\u002F\u002Fexample.com\u002Fpage\": {\n      \"title\": \"Page Title\",\n      \"hostname\": \"example.com\",\n      \"age\": [\"Wednesday, January 15, 2025\", \"2025-01-15\", \"392 days ago\"]\n    }\n  }\n}\n","json",[2660],{"type":39,"tag":133,"props":2661,"children":2662},{"__ignoreMap":295},[2663,2671,2698,2724,2732,2772,2809,2833,2854,2871,2880,2888,2897,2923,2932,2957,2981,3018,3056,3135,3144,3153],{"type":39,"tag":301,"props":2664,"children":2665},{"class":303,"line":304},[2666],{"type":39,"tag":301,"props":2667,"children":2668},{"style":403},[2669],{"type":44,"value":2670},"{\n",{"type":39,"tag":301,"props":2672,"children":2673},{"class":303,"line":313},[2674,2679,2685,2689,2693],{"type":39,"tag":301,"props":2675,"children":2676},{"style":403},[2677],{"type":44,"value":2678},"  \"",{"type":39,"tag":301,"props":2680,"children":2682},{"style":2681},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2683],{"type":44,"value":2684},"grounding",{"type":39,"tag":301,"props":2686,"children":2687},{"style":403},[2688],{"type":44,"value":416},{"type":39,"tag":301,"props":2690,"children":2691},{"style":403},[2692],{"type":44,"value":347},{"type":39,"tag":301,"props":2694,"children":2695},{"style":403},[2696],{"type":44,"value":2697}," {\n",{"type":39,"tag":301,"props":2699,"children":2700},{"class":303,"line":450},[2701,2706,2711,2715,2719],{"type":39,"tag":301,"props":2702,"children":2703},{"style":403},[2704],{"type":44,"value":2705},"    \"",{"type":39,"tag":301,"props":2707,"children":2708},{"style":391},[2709],{"type":44,"value":2710},"generic",{"type":39,"tag":301,"props":2712,"children":2713},{"style":403},[2714],{"type":44,"value":416},{"type":39,"tag":301,"props":2716,"children":2717},{"style":403},[2718],{"type":44,"value":347},{"type":39,"tag":301,"props":2720,"children":2721},{"style":403},[2722],{"type":44,"value":2723}," [\n",{"type":39,"tag":301,"props":2725,"children":2726},{"class":303,"line":584},[2727],{"type":39,"tag":301,"props":2728,"children":2729},{"style":403},[2730],{"type":44,"value":2731},"      {\n",{"type":39,"tag":301,"props":2733,"children":2734},{"class":303,"line":617},[2735,2740,2746,2750,2754,2758,2763,2767],{"type":39,"tag":301,"props":2736,"children":2737},{"style":403},[2738],{"type":44,"value":2739},"        \"",{"type":39,"tag":301,"props":2741,"children":2743},{"style":2742},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2744],{"type":44,"value":2745},"url",{"type":39,"tag":301,"props":2747,"children":2748},{"style":403},[2749],{"type":44,"value":416},{"type":39,"tag":301,"props":2751,"children":2752},{"style":403},[2753],{"type":44,"value":347},{"type":39,"tag":301,"props":2755,"children":2756},{"style":403},[2757],{"type":44,"value":406},{"type":39,"tag":301,"props":2759,"children":2760},{"style":397},[2761],{"type":44,"value":2762},"https:\u002F\u002Fexample.com\u002Fpage",{"type":39,"tag":301,"props":2764,"children":2765},{"style":403},[2766],{"type":44,"value":416},{"type":39,"tag":301,"props":2768,"children":2769},{"style":403},[2770],{"type":44,"value":2771},",\n",{"type":39,"tag":301,"props":2773,"children":2774},{"class":303,"line":642},[2775,2779,2784,2788,2792,2796,2801,2805],{"type":39,"tag":301,"props":2776,"children":2777},{"style":403},[2778],{"type":44,"value":2739},{"type":39,"tag":301,"props":2780,"children":2781},{"style":2742},[2782],{"type":44,"value":2783},"title",{"type":39,"tag":301,"props":2785,"children":2786},{"style":403},[2787],{"type":44,"value":416},{"type":39,"tag":301,"props":2789,"children":2790},{"style":403},[2791],{"type":44,"value":347},{"type":39,"tag":301,"props":2793,"children":2794},{"style":403},[2795],{"type":44,"value":406},{"type":39,"tag":301,"props":2797,"children":2798},{"style":397},[2799],{"type":44,"value":2800},"Page Title",{"type":39,"tag":301,"props":2802,"children":2803},{"style":403},[2804],{"type":44,"value":416},{"type":39,"tag":301,"props":2806,"children":2807},{"style":403},[2808],{"type":44,"value":2771},{"type":39,"tag":301,"props":2810,"children":2811},{"class":303,"line":813},[2812,2816,2821,2825,2829],{"type":39,"tag":301,"props":2813,"children":2814},{"style":403},[2815],{"type":44,"value":2739},{"type":39,"tag":301,"props":2817,"children":2818},{"style":2742},[2819],{"type":44,"value":2820},"snippets",{"type":39,"tag":301,"props":2822,"children":2823},{"style":403},[2824],{"type":44,"value":416},{"type":39,"tag":301,"props":2826,"children":2827},{"style":403},[2828],{"type":44,"value":347},{"type":39,"tag":301,"props":2830,"children":2831},{"style":403},[2832],{"type":44,"value":2723},{"type":39,"tag":301,"props":2834,"children":2835},{"class":303,"line":822},[2836,2841,2846,2850],{"type":39,"tag":301,"props":2837,"children":2838},{"style":403},[2839],{"type":44,"value":2840},"          \"",{"type":39,"tag":301,"props":2842,"children":2843},{"style":397},[2844],{"type":44,"value":2845},"Relevant text chunk extracted from the page...",{"type":39,"tag":301,"props":2847,"children":2848},{"style":403},[2849],{"type":44,"value":416},{"type":39,"tag":301,"props":2851,"children":2852},{"style":403},[2853],{"type":44,"value":2771},{"type":39,"tag":301,"props":2855,"children":2857},{"class":303,"line":2856},9,[2858,2862,2867],{"type":39,"tag":301,"props":2859,"children":2860},{"style":403},[2861],{"type":44,"value":2840},{"type":39,"tag":301,"props":2863,"children":2864},{"style":397},[2865],{"type":44,"value":2866},"Another relevant passage from the same page...",{"type":39,"tag":301,"props":2868,"children":2869},{"style":403},[2870],{"type":44,"value":2102},{"type":39,"tag":301,"props":2872,"children":2874},{"class":303,"line":2873},10,[2875],{"type":39,"tag":301,"props":2876,"children":2877},{"style":403},[2878],{"type":44,"value":2879},"        ]\n",{"type":39,"tag":301,"props":2881,"children":2882},{"class":303,"line":26},[2883],{"type":39,"tag":301,"props":2884,"children":2885},{"style":403},[2886],{"type":44,"value":2887},"      }\n",{"type":39,"tag":301,"props":2889,"children":2891},{"class":303,"line":2890},12,[2892],{"type":39,"tag":301,"props":2893,"children":2894},{"style":403},[2895],{"type":44,"value":2896},"    ],\n",{"type":39,"tag":301,"props":2898,"children":2900},{"class":303,"line":2899},13,[2901,2905,2910,2914,2918],{"type":39,"tag":301,"props":2902,"children":2903},{"style":403},[2904],{"type":44,"value":2705},{"type":39,"tag":301,"props":2906,"children":2907},{"style":391},[2908],{"type":44,"value":2909},"map",{"type":39,"tag":301,"props":2911,"children":2912},{"style":403},[2913],{"type":44,"value":416},{"type":39,"tag":301,"props":2915,"children":2916},{"style":403},[2917],{"type":44,"value":347},{"type":39,"tag":301,"props":2919,"children":2920},{"style":403},[2921],{"type":44,"value":2922}," []\n",{"type":39,"tag":301,"props":2924,"children":2926},{"class":303,"line":2925},14,[2927],{"type":39,"tag":301,"props":2928,"children":2929},{"style":403},[2930],{"type":44,"value":2931},"  },\n",{"type":39,"tag":301,"props":2933,"children":2935},{"class":303,"line":2934},15,[2936,2940,2945,2949,2953],{"type":39,"tag":301,"props":2937,"children":2938},{"style":403},[2939],{"type":44,"value":2678},{"type":39,"tag":301,"props":2941,"children":2942},{"style":2681},[2943],{"type":44,"value":2944},"sources",{"type":39,"tag":301,"props":2946,"children":2947},{"style":403},[2948],{"type":44,"value":416},{"type":39,"tag":301,"props":2950,"children":2951},{"style":403},[2952],{"type":44,"value":347},{"type":39,"tag":301,"props":2954,"children":2955},{"style":403},[2956],{"type":44,"value":2697},{"type":39,"tag":301,"props":2958,"children":2960},{"class":303,"line":2959},16,[2961,2965,2969,2973,2977],{"type":39,"tag":301,"props":2962,"children":2963},{"style":403},[2964],{"type":44,"value":2705},{"type":39,"tag":301,"props":2966,"children":2967},{"style":391},[2968],{"type":44,"value":2762},{"type":39,"tag":301,"props":2970,"children":2971},{"style":403},[2972],{"type":44,"value":416},{"type":39,"tag":301,"props":2974,"children":2975},{"style":403},[2976],{"type":44,"value":347},{"type":39,"tag":301,"props":2978,"children":2979},{"style":403},[2980],{"type":44,"value":2697},{"type":39,"tag":301,"props":2982,"children":2984},{"class":303,"line":2983},17,[2985,2990,2994,2998,3002,3006,3010,3014],{"type":39,"tag":301,"props":2986,"children":2987},{"style":403},[2988],{"type":44,"value":2989},"      \"",{"type":39,"tag":301,"props":2991,"children":2992},{"style":2742},[2993],{"type":44,"value":2783},{"type":39,"tag":301,"props":2995,"children":2996},{"style":403},[2997],{"type":44,"value":416},{"type":39,"tag":301,"props":2999,"children":3000},{"style":403},[3001],{"type":44,"value":347},{"type":39,"tag":301,"props":3003,"children":3004},{"style":403},[3005],{"type":44,"value":406},{"type":39,"tag":301,"props":3007,"children":3008},{"style":397},[3009],{"type":44,"value":2800},{"type":39,"tag":301,"props":3011,"children":3012},{"style":403},[3013],{"type":44,"value":416},{"type":39,"tag":301,"props":3015,"children":3016},{"style":403},[3017],{"type":44,"value":2771},{"type":39,"tag":301,"props":3019,"children":3021},{"class":303,"line":3020},18,[3022,3026,3031,3035,3039,3043,3048,3052],{"type":39,"tag":301,"props":3023,"children":3024},{"style":403},[3025],{"type":44,"value":2989},{"type":39,"tag":301,"props":3027,"children":3028},{"style":2742},[3029],{"type":44,"value":3030},"hostname",{"type":39,"tag":301,"props":3032,"children":3033},{"style":403},[3034],{"type":44,"value":416},{"type":39,"tag":301,"props":3036,"children":3037},{"style":403},[3038],{"type":44,"value":347},{"type":39,"tag":301,"props":3040,"children":3041},{"style":403},[3042],{"type":44,"value":406},{"type":39,"tag":301,"props":3044,"children":3045},{"style":397},[3046],{"type":44,"value":3047},"example.com",{"type":39,"tag":301,"props":3049,"children":3050},{"style":403},[3051],{"type":44,"value":416},{"type":39,"tag":301,"props":3053,"children":3054},{"style":403},[3055],{"type":44,"value":2771},{"type":39,"tag":301,"props":3057,"children":3059},{"class":303,"line":3058},19,[3060,3064,3069,3073,3077,3082,3086,3091,3095,3100,3104,3109,3113,3117,3121,3126,3130],{"type":39,"tag":301,"props":3061,"children":3062},{"style":403},[3063],{"type":44,"value":2989},{"type":39,"tag":301,"props":3065,"children":3066},{"style":2742},[3067],{"type":44,"value":3068},"age",{"type":39,"tag":301,"props":3070,"children":3071},{"style":403},[3072],{"type":44,"value":416},{"type":39,"tag":301,"props":3074,"children":3075},{"style":403},[3076],{"type":44,"value":347},{"type":39,"tag":301,"props":3078,"children":3079},{"style":403},[3080],{"type":44,"value":3081}," [",{"type":39,"tag":301,"props":3083,"children":3084},{"style":403},[3085],{"type":44,"value":416},{"type":39,"tag":301,"props":3087,"children":3088},{"style":397},[3089],{"type":44,"value":3090},"Wednesday, January 15, 2025",{"type":39,"tag":301,"props":3092,"children":3093},{"style":403},[3094],{"type":44,"value":416},{"type":39,"tag":301,"props":3096,"children":3097},{"style":403},[3098],{"type":44,"value":3099},",",{"type":39,"tag":301,"props":3101,"children":3102},{"style":403},[3103],{"type":44,"value":406},{"type":39,"tag":301,"props":3105,"children":3106},{"style":397},[3107],{"type":44,"value":3108},"2025-01-15",{"type":39,"tag":301,"props":3110,"children":3111},{"style":403},[3112],{"type":44,"value":416},{"type":39,"tag":301,"props":3114,"children":3115},{"style":403},[3116],{"type":44,"value":3099},{"type":39,"tag":301,"props":3118,"children":3119},{"style":403},[3120],{"type":44,"value":406},{"type":39,"tag":301,"props":3122,"children":3123},{"style":397},[3124],{"type":44,"value":3125},"392 days ago",{"type":39,"tag":301,"props":3127,"children":3128},{"style":403},[3129],{"type":44,"value":416},{"type":39,"tag":301,"props":3131,"children":3132},{"style":403},[3133],{"type":44,"value":3134},"]\n",{"type":39,"tag":301,"props":3136,"children":3138},{"class":303,"line":3137},20,[3139],{"type":39,"tag":301,"props":3140,"children":3141},{"style":403},[3142],{"type":44,"value":3143},"    }\n",{"type":39,"tag":301,"props":3145,"children":3147},{"class":303,"line":3146},21,[3148],{"type":39,"tag":301,"props":3149,"children":3150},{"style":403},[3151],{"type":44,"value":3152},"  }\n",{"type":39,"tag":301,"props":3154,"children":3156},{"class":303,"line":3155},22,[3157],{"type":39,"tag":301,"props":3158,"children":3159},{"style":403},[3160],{"type":44,"value":3161},"}\n",{"type":39,"tag":371,"props":3163,"children":3165},{"id":3164},"local-response-with-enable_local",[3166,3168,3173],{"type":44,"value":3167},"Local Response (with ",{"type":39,"tag":133,"props":3169,"children":3171},{"className":3170},[],[3172],{"type":44,"value":1338},{"type":44,"value":140},{"type":39,"tag":290,"props":3175,"children":3177},{"className":2656,"code":3176,"language":2658,"meta":295,"style":295},"{\n  \"grounding\": {\n    \"generic\": [...],\n    \"poi\": {\n      \"name\": \"Business Name\",\n      \"url\": \"https:\u002F\u002Fbusiness.com\",\n      \"title\": \"Title of business.com website\",\n      \"snippets\": [\"Business details and information...\"]\n    },\n    \"map\": [\n      {\n        \"name\": \"Place Name\",\n        \"url\": \"https:\u002F\u002Fplace.com\",\n        \"title\": \"Title of place.com website\",\n        \"snippets\": [\"Place information and details...\"]\n      }\n    ]\n  },\n  \"sources\": {\n    \"https:\u002F\u002Fbusiness.com\": {\n      \"title\": \"Business Name\",\n      \"hostname\": \"business.com\",\n      \"age\": null\n    }\n  }\n}\n",[3178],{"type":39,"tag":133,"props":3179,"children":3180},{"__ignoreMap":295},[3181,3188,3211,3244,3268,3305,3341,3377,3417,3425,3448,3455,3491,3527,3563,3603,3610,3618,3625,3648,3671,3706,3742,3767,3775,3783],{"type":39,"tag":301,"props":3182,"children":3183},{"class":303,"line":304},[3184],{"type":39,"tag":301,"props":3185,"children":3186},{"style":403},[3187],{"type":44,"value":2670},{"type":39,"tag":301,"props":3189,"children":3190},{"class":303,"line":313},[3191,3195,3199,3203,3207],{"type":39,"tag":301,"props":3192,"children":3193},{"style":403},[3194],{"type":44,"value":2678},{"type":39,"tag":301,"props":3196,"children":3197},{"style":2681},[3198],{"type":44,"value":2684},{"type":39,"tag":301,"props":3200,"children":3201},{"style":403},[3202],{"type":44,"value":416},{"type":39,"tag":301,"props":3204,"children":3205},{"style":403},[3206],{"type":44,"value":347},{"type":39,"tag":301,"props":3208,"children":3209},{"style":403},[3210],{"type":44,"value":2697},{"type":39,"tag":301,"props":3212,"children":3213},{"class":303,"line":450},[3214,3218,3222,3226,3230,3234,3239],{"type":39,"tag":301,"props":3215,"children":3216},{"style":403},[3217],{"type":44,"value":2705},{"type":39,"tag":301,"props":3219,"children":3220},{"style":391},[3221],{"type":44,"value":2710},{"type":39,"tag":301,"props":3223,"children":3224},{"style":403},[3225],{"type":44,"value":416},{"type":39,"tag":301,"props":3227,"children":3228},{"style":403},[3229],{"type":44,"value":347},{"type":39,"tag":301,"props":3231,"children":3232},{"style":403},[3233],{"type":44,"value":3081},{"type":39,"tag":301,"props":3235,"children":3236},{"style":419},[3237],{"type":44,"value":3238},"...",{"type":39,"tag":301,"props":3240,"children":3241},{"style":403},[3242],{"type":44,"value":3243},"],\n",{"type":39,"tag":301,"props":3245,"children":3246},{"class":303,"line":584},[3247,3251,3256,3260,3264],{"type":39,"tag":301,"props":3248,"children":3249},{"style":403},[3250],{"type":44,"value":2705},{"type":39,"tag":301,"props":3252,"children":3253},{"style":391},[3254],{"type":44,"value":3255},"poi",{"type":39,"tag":301,"props":3257,"children":3258},{"style":403},[3259],{"type":44,"value":416},{"type":39,"tag":301,"props":3261,"children":3262},{"style":403},[3263],{"type":44,"value":347},{"type":39,"tag":301,"props":3265,"children":3266},{"style":403},[3267],{"type":44,"value":2697},{"type":39,"tag":301,"props":3269,"children":3270},{"class":303,"line":617},[3271,3275,3280,3284,3288,3292,3297,3301],{"type":39,"tag":301,"props":3272,"children":3273},{"style":403},[3274],{"type":44,"value":2989},{"type":39,"tag":301,"props":3276,"children":3277},{"style":2742},[3278],{"type":44,"value":3279},"name",{"type":39,"tag":301,"props":3281,"children":3282},{"style":403},[3283],{"type":44,"value":416},{"type":39,"tag":301,"props":3285,"children":3286},{"style":403},[3287],{"type":44,"value":347},{"type":39,"tag":301,"props":3289,"children":3290},{"style":403},[3291],{"type":44,"value":406},{"type":39,"tag":301,"props":3293,"children":3294},{"style":397},[3295],{"type":44,"value":3296},"Business Name",{"type":39,"tag":301,"props":3298,"children":3299},{"style":403},[3300],{"type":44,"value":416},{"type":39,"tag":301,"props":3302,"children":3303},{"style":403},[3304],{"type":44,"value":2771},{"type":39,"tag":301,"props":3306,"children":3307},{"class":303,"line":642},[3308,3312,3316,3320,3324,3328,3333,3337],{"type":39,"tag":301,"props":3309,"children":3310},{"style":403},[3311],{"type":44,"value":2989},{"type":39,"tag":301,"props":3313,"children":3314},{"style":2742},[3315],{"type":44,"value":2745},{"type":39,"tag":301,"props":3317,"children":3318},{"style":403},[3319],{"type":44,"value":416},{"type":39,"tag":301,"props":3321,"children":3322},{"style":403},[3323],{"type":44,"value":347},{"type":39,"tag":301,"props":3325,"children":3326},{"style":403},[3327],{"type":44,"value":406},{"type":39,"tag":301,"props":3329,"children":3330},{"style":397},[3331],{"type":44,"value":3332},"https:\u002F\u002Fbusiness.com",{"type":39,"tag":301,"props":3334,"children":3335},{"style":403},[3336],{"type":44,"value":416},{"type":39,"tag":301,"props":3338,"children":3339},{"style":403},[3340],{"type":44,"value":2771},{"type":39,"tag":301,"props":3342,"children":3343},{"class":303,"line":813},[3344,3348,3352,3356,3360,3364,3369,3373],{"type":39,"tag":301,"props":3345,"children":3346},{"style":403},[3347],{"type":44,"value":2989},{"type":39,"tag":301,"props":3349,"children":3350},{"style":2742},[3351],{"type":44,"value":2783},{"type":39,"tag":301,"props":3353,"children":3354},{"style":403},[3355],{"type":44,"value":416},{"type":39,"tag":301,"props":3357,"children":3358},{"style":403},[3359],{"type":44,"value":347},{"type":39,"tag":301,"props":3361,"children":3362},{"style":403},[3363],{"type":44,"value":406},{"type":39,"tag":301,"props":3365,"children":3366},{"style":397},[3367],{"type":44,"value":3368},"Title of business.com website",{"type":39,"tag":301,"props":3370,"children":3371},{"style":403},[3372],{"type":44,"value":416},{"type":39,"tag":301,"props":3374,"children":3375},{"style":403},[3376],{"type":44,"value":2771},{"type":39,"tag":301,"props":3378,"children":3379},{"class":303,"line":822},[3380,3384,3388,3392,3396,3400,3404,3409,3413],{"type":39,"tag":301,"props":3381,"children":3382},{"style":403},[3383],{"type":44,"value":2989},{"type":39,"tag":301,"props":3385,"children":3386},{"style":2742},[3387],{"type":44,"value":2820},{"type":39,"tag":301,"props":3389,"children":3390},{"style":403},[3391],{"type":44,"value":416},{"type":39,"tag":301,"props":3393,"children":3394},{"style":403},[3395],{"type":44,"value":347},{"type":39,"tag":301,"props":3397,"children":3398},{"style":403},[3399],{"type":44,"value":3081},{"type":39,"tag":301,"props":3401,"children":3402},{"style":403},[3403],{"type":44,"value":416},{"type":39,"tag":301,"props":3405,"children":3406},{"style":397},[3407],{"type":44,"value":3408},"Business details and information...",{"type":39,"tag":301,"props":3410,"children":3411},{"style":403},[3412],{"type":44,"value":416},{"type":39,"tag":301,"props":3414,"children":3415},{"style":403},[3416],{"type":44,"value":3134},{"type":39,"tag":301,"props":3418,"children":3419},{"class":303,"line":2856},[3420],{"type":39,"tag":301,"props":3421,"children":3422},{"style":403},[3423],{"type":44,"value":3424},"    },\n",{"type":39,"tag":301,"props":3426,"children":3427},{"class":303,"line":2873},[3428,3432,3436,3440,3444],{"type":39,"tag":301,"props":3429,"children":3430},{"style":403},[3431],{"type":44,"value":2705},{"type":39,"tag":301,"props":3433,"children":3434},{"style":391},[3435],{"type":44,"value":2909},{"type":39,"tag":301,"props":3437,"children":3438},{"style":403},[3439],{"type":44,"value":416},{"type":39,"tag":301,"props":3441,"children":3442},{"style":403},[3443],{"type":44,"value":347},{"type":39,"tag":301,"props":3445,"children":3446},{"style":403},[3447],{"type":44,"value":2723},{"type":39,"tag":301,"props":3449,"children":3450},{"class":303,"line":26},[3451],{"type":39,"tag":301,"props":3452,"children":3453},{"style":403},[3454],{"type":44,"value":2731},{"type":39,"tag":301,"props":3456,"children":3457},{"class":303,"line":2890},[3458,3462,3466,3470,3474,3478,3483,3487],{"type":39,"tag":301,"props":3459,"children":3460},{"style":403},[3461],{"type":44,"value":2739},{"type":39,"tag":301,"props":3463,"children":3464},{"style":2742},[3465],{"type":44,"value":3279},{"type":39,"tag":301,"props":3467,"children":3468},{"style":403},[3469],{"type":44,"value":416},{"type":39,"tag":301,"props":3471,"children":3472},{"style":403},[3473],{"type":44,"value":347},{"type":39,"tag":301,"props":3475,"children":3476},{"style":403},[3477],{"type":44,"value":406},{"type":39,"tag":301,"props":3479,"children":3480},{"style":397},[3481],{"type":44,"value":3482},"Place Name",{"type":39,"tag":301,"props":3484,"children":3485},{"style":403},[3486],{"type":44,"value":416},{"type":39,"tag":301,"props":3488,"children":3489},{"style":403},[3490],{"type":44,"value":2771},{"type":39,"tag":301,"props":3492,"children":3493},{"class":303,"line":2899},[3494,3498,3502,3506,3510,3514,3519,3523],{"type":39,"tag":301,"props":3495,"children":3496},{"style":403},[3497],{"type":44,"value":2739},{"type":39,"tag":301,"props":3499,"children":3500},{"style":2742},[3501],{"type":44,"value":2745},{"type":39,"tag":301,"props":3503,"children":3504},{"style":403},[3505],{"type":44,"value":416},{"type":39,"tag":301,"props":3507,"children":3508},{"style":403},[3509],{"type":44,"value":347},{"type":39,"tag":301,"props":3511,"children":3512},{"style":403},[3513],{"type":44,"value":406},{"type":39,"tag":301,"props":3515,"children":3516},{"style":397},[3517],{"type":44,"value":3518},"https:\u002F\u002Fplace.com",{"type":39,"tag":301,"props":3520,"children":3521},{"style":403},[3522],{"type":44,"value":416},{"type":39,"tag":301,"props":3524,"children":3525},{"style":403},[3526],{"type":44,"value":2771},{"type":39,"tag":301,"props":3528,"children":3529},{"class":303,"line":2925},[3530,3534,3538,3542,3546,3550,3555,3559],{"type":39,"tag":301,"props":3531,"children":3532},{"style":403},[3533],{"type":44,"value":2739},{"type":39,"tag":301,"props":3535,"children":3536},{"style":2742},[3537],{"type":44,"value":2783},{"type":39,"tag":301,"props":3539,"children":3540},{"style":403},[3541],{"type":44,"value":416},{"type":39,"tag":301,"props":3543,"children":3544},{"style":403},[3545],{"type":44,"value":347},{"type":39,"tag":301,"props":3547,"children":3548},{"style":403},[3549],{"type":44,"value":406},{"type":39,"tag":301,"props":3551,"children":3552},{"style":397},[3553],{"type":44,"value":3554},"Title of place.com website",{"type":39,"tag":301,"props":3556,"children":3557},{"style":403},[3558],{"type":44,"value":416},{"type":39,"tag":301,"props":3560,"children":3561},{"style":403},[3562],{"type":44,"value":2771},{"type":39,"tag":301,"props":3564,"children":3565},{"class":303,"line":2934},[3566,3570,3574,3578,3582,3586,3590,3595,3599],{"type":39,"tag":301,"props":3567,"children":3568},{"style":403},[3569],{"type":44,"value":2739},{"type":39,"tag":301,"props":3571,"children":3572},{"style":2742},[3573],{"type":44,"value":2820},{"type":39,"tag":301,"props":3575,"children":3576},{"style":403},[3577],{"type":44,"value":416},{"type":39,"tag":301,"props":3579,"children":3580},{"style":403},[3581],{"type":44,"value":347},{"type":39,"tag":301,"props":3583,"children":3584},{"style":403},[3585],{"type":44,"value":3081},{"type":39,"tag":301,"props":3587,"children":3588},{"style":403},[3589],{"type":44,"value":416},{"type":39,"tag":301,"props":3591,"children":3592},{"style":397},[3593],{"type":44,"value":3594},"Place information and details...",{"type":39,"tag":301,"props":3596,"children":3597},{"style":403},[3598],{"type":44,"value":416},{"type":39,"tag":301,"props":3600,"children":3601},{"style":403},[3602],{"type":44,"value":3134},{"type":39,"tag":301,"props":3604,"children":3605},{"class":303,"line":2959},[3606],{"type":39,"tag":301,"props":3607,"children":3608},{"style":403},[3609],{"type":44,"value":2887},{"type":39,"tag":301,"props":3611,"children":3612},{"class":303,"line":2983},[3613],{"type":39,"tag":301,"props":3614,"children":3615},{"style":403},[3616],{"type":44,"value":3617},"    ]\n",{"type":39,"tag":301,"props":3619,"children":3620},{"class":303,"line":3020},[3621],{"type":39,"tag":301,"props":3622,"children":3623},{"style":403},[3624],{"type":44,"value":2931},{"type":39,"tag":301,"props":3626,"children":3627},{"class":303,"line":3058},[3628,3632,3636,3640,3644],{"type":39,"tag":301,"props":3629,"children":3630},{"style":403},[3631],{"type":44,"value":2678},{"type":39,"tag":301,"props":3633,"children":3634},{"style":2681},[3635],{"type":44,"value":2944},{"type":39,"tag":301,"props":3637,"children":3638},{"style":403},[3639],{"type":44,"value":416},{"type":39,"tag":301,"props":3641,"children":3642},{"style":403},[3643],{"type":44,"value":347},{"type":39,"tag":301,"props":3645,"children":3646},{"style":403},[3647],{"type":44,"value":2697},{"type":39,"tag":301,"props":3649,"children":3650},{"class":303,"line":3137},[3651,3655,3659,3663,3667],{"type":39,"tag":301,"props":3652,"children":3653},{"style":403},[3654],{"type":44,"value":2705},{"type":39,"tag":301,"props":3656,"children":3657},{"style":391},[3658],{"type":44,"value":3332},{"type":39,"tag":301,"props":3660,"children":3661},{"style":403},[3662],{"type":44,"value":416},{"type":39,"tag":301,"props":3664,"children":3665},{"style":403},[3666],{"type":44,"value":347},{"type":39,"tag":301,"props":3668,"children":3669},{"style":403},[3670],{"type":44,"value":2697},{"type":39,"tag":301,"props":3672,"children":3673},{"class":303,"line":3146},[3674,3678,3682,3686,3690,3694,3698,3702],{"type":39,"tag":301,"props":3675,"children":3676},{"style":403},[3677],{"type":44,"value":2989},{"type":39,"tag":301,"props":3679,"children":3680},{"style":2742},[3681],{"type":44,"value":2783},{"type":39,"tag":301,"props":3683,"children":3684},{"style":403},[3685],{"type":44,"value":416},{"type":39,"tag":301,"props":3687,"children":3688},{"style":403},[3689],{"type":44,"value":347},{"type":39,"tag":301,"props":3691,"children":3692},{"style":403},[3693],{"type":44,"value":406},{"type":39,"tag":301,"props":3695,"children":3696},{"style":397},[3697],{"type":44,"value":3296},{"type":39,"tag":301,"props":3699,"children":3700},{"style":403},[3701],{"type":44,"value":416},{"type":39,"tag":301,"props":3703,"children":3704},{"style":403},[3705],{"type":44,"value":2771},{"type":39,"tag":301,"props":3707,"children":3708},{"class":303,"line":3155},[3709,3713,3717,3721,3725,3729,3734,3738],{"type":39,"tag":301,"props":3710,"children":3711},{"style":403},[3712],{"type":44,"value":2989},{"type":39,"tag":301,"props":3714,"children":3715},{"style":2742},[3716],{"type":44,"value":3030},{"type":39,"tag":301,"props":3718,"children":3719},{"style":403},[3720],{"type":44,"value":416},{"type":39,"tag":301,"props":3722,"children":3723},{"style":403},[3724],{"type":44,"value":347},{"type":39,"tag":301,"props":3726,"children":3727},{"style":403},[3728],{"type":44,"value":406},{"type":39,"tag":301,"props":3730,"children":3731},{"style":397},[3732],{"type":44,"value":3733},"business.com",{"type":39,"tag":301,"props":3735,"children":3736},{"style":403},[3737],{"type":44,"value":416},{"type":39,"tag":301,"props":3739,"children":3740},{"style":403},[3741],{"type":44,"value":2771},{"type":39,"tag":301,"props":3743,"children":3745},{"class":303,"line":3744},23,[3746,3750,3754,3758,3762],{"type":39,"tag":301,"props":3747,"children":3748},{"style":403},[3749],{"type":44,"value":2989},{"type":39,"tag":301,"props":3751,"children":3752},{"style":2742},[3753],{"type":44,"value":3068},{"type":39,"tag":301,"props":3755,"children":3756},{"style":403},[3757],{"type":44,"value":416},{"type":39,"tag":301,"props":3759,"children":3760},{"style":403},[3761],{"type":44,"value":347},{"type":39,"tag":301,"props":3763,"children":3764},{"style":403},[3765],{"type":44,"value":3766}," null\n",{"type":39,"tag":301,"props":3768,"children":3770},{"class":303,"line":3769},24,[3771],{"type":39,"tag":301,"props":3772,"children":3773},{"style":403},[3774],{"type":44,"value":3143},{"type":39,"tag":301,"props":3776,"children":3778},{"class":303,"line":3777},25,[3779],{"type":39,"tag":301,"props":3780,"children":3781},{"style":403},[3782],{"type":44,"value":3152},{"type":39,"tag":301,"props":3784,"children":3786},{"class":303,"line":3785},26,[3787],{"type":39,"tag":301,"props":3788,"children":3789},{"style":403},[3790],{"type":44,"value":3161},{"type":39,"tag":371,"props":3792,"children":3794},{"id":3793},"response-fields",[3795],{"type":44,"value":3796},"Response Fields",{"type":39,"tag":105,"props":3798,"children":3799},{},[3800,3819],{"type":39,"tag":109,"props":3801,"children":3802},{},[3803],{"type":39,"tag":113,"props":3804,"children":3805},{},[3806,3811,3815],{"type":39,"tag":117,"props":3807,"children":3808},{},[3809],{"type":44,"value":3810},"Field",{"type":39,"tag":117,"props":3812,"children":3813},{},[3814],{"type":44,"value":863},{"type":39,"tag":117,"props":3816,"children":3817},{},[3818],{"type":44,"value":878},{"type":39,"tag":142,"props":3820,"children":3821},{},[3822,3843,3865,3886,3907,3928,3950,3972,3993,4014,4036,4057,4078,4099,4120,4141,4161,4181,4202],{"type":39,"tag":113,"props":3823,"children":3824},{},[3825,3833,3838],{"type":39,"tag":149,"props":3826,"children":3827},{},[3828],{"type":39,"tag":133,"props":3829,"children":3831},{"className":3830},[],[3832],{"type":44,"value":2684},{"type":39,"tag":149,"props":3834,"children":3835},{},[3836],{"type":44,"value":3837},"object",{"type":39,"tag":149,"props":3839,"children":3840},{},[3841],{"type":44,"value":3842},"Container for all grounding content by type",{"type":39,"tag":113,"props":3844,"children":3845},{},[3846,3855,3860],{"type":39,"tag":149,"props":3847,"children":3848},{},[3849],{"type":39,"tag":133,"props":3850,"children":3852},{"className":3851},[],[3853],{"type":44,"value":3854},"grounding.generic",{"type":39,"tag":149,"props":3856,"children":3857},{},[3858],{"type":44,"value":3859},"array",{"type":39,"tag":149,"props":3861,"children":3862},{},[3863],{"type":44,"value":3864},"Array of URL objects with extracted content (main grounding data)",{"type":39,"tag":113,"props":3866,"children":3867},{},[3868,3877,3881],{"type":39,"tag":149,"props":3869,"children":3870},{},[3871],{"type":39,"tag":133,"props":3872,"children":3874},{"className":3873},[],[3875],{"type":44,"value":3876},"grounding.generic[].url",{"type":39,"tag":149,"props":3878,"children":3879},{},[3880],{"type":44,"value":898},{"type":39,"tag":149,"props":3882,"children":3883},{},[3884],{"type":44,"value":3885},"Source URL",{"type":39,"tag":113,"props":3887,"children":3888},{},[3889,3898,3902],{"type":39,"tag":149,"props":3890,"children":3891},{},[3892],{"type":39,"tag":133,"props":3893,"children":3895},{"className":3894},[],[3896],{"type":44,"value":3897},"grounding.generic[].title",{"type":39,"tag":149,"props":3899,"children":3900},{},[3901],{"type":44,"value":898},{"type":39,"tag":149,"props":3903,"children":3904},{},[3905],{"type":44,"value":3906},"Page title",{"type":39,"tag":113,"props":3908,"children":3909},{},[3910,3919,3923],{"type":39,"tag":149,"props":3911,"children":3912},{},[3913],{"type":39,"tag":133,"props":3914,"children":3916},{"className":3915},[],[3917],{"type":44,"value":3918},"grounding.generic[].snippets",{"type":39,"tag":149,"props":3920,"children":3921},{},[3922],{"type":44,"value":3859},{"type":39,"tag":149,"props":3924,"children":3925},{},[3926],{"type":44,"value":3927},"Extracted smart chunks relevant to the query",{"type":39,"tag":113,"props":3929,"children":3930},{},[3931,3940,3945],{"type":39,"tag":149,"props":3932,"children":3933},{},[3934],{"type":39,"tag":133,"props":3935,"children":3937},{"className":3936},[],[3938],{"type":44,"value":3939},"grounding.poi",{"type":39,"tag":149,"props":3941,"children":3942},{},[3943],{"type":44,"value":3944},"object\u002Fnull",{"type":39,"tag":149,"props":3946,"children":3947},{},[3948],{"type":44,"value":3949},"Point of interest data (only with local recall)",{"type":39,"tag":113,"props":3951,"children":3952},{},[3953,3962,3967],{"type":39,"tag":149,"props":3954,"children":3955},{},[3956],{"type":39,"tag":133,"props":3957,"children":3959},{"className":3958},[],[3960],{"type":44,"value":3961},"grounding.poi.name",{"type":39,"tag":149,"props":3963,"children":3964},{},[3965],{"type":44,"value":3966},"string\u002Fnull",{"type":39,"tag":149,"props":3968,"children":3969},{},[3970],{"type":44,"value":3971},"Point of interest name",{"type":39,"tag":113,"props":3973,"children":3974},{},[3975,3984,3988],{"type":39,"tag":149,"props":3976,"children":3977},{},[3978],{"type":39,"tag":133,"props":3979,"children":3981},{"className":3980},[],[3982],{"type":44,"value":3983},"grounding.poi.url",{"type":39,"tag":149,"props":3985,"children":3986},{},[3987],{"type":44,"value":3966},{"type":39,"tag":149,"props":3989,"children":3990},{},[3991],{"type":44,"value":3992},"POI source URL",{"type":39,"tag":113,"props":3994,"children":3995},{},[3996,4005,4009],{"type":39,"tag":149,"props":3997,"children":3998},{},[3999],{"type":39,"tag":133,"props":4000,"children":4002},{"className":4001},[],[4003],{"type":44,"value":4004},"grounding.poi.title",{"type":39,"tag":149,"props":4006,"children":4007},{},[4008],{"type":44,"value":3966},{"type":39,"tag":149,"props":4010,"children":4011},{},[4012],{"type":44,"value":4013},"POI page title",{"type":39,"tag":113,"props":4015,"children":4016},{},[4017,4026,4031],{"type":39,"tag":149,"props":4018,"children":4019},{},[4020],{"type":39,"tag":133,"props":4021,"children":4023},{"className":4022},[],[4024],{"type":44,"value":4025},"grounding.poi.snippets",{"type":39,"tag":149,"props":4027,"children":4028},{},[4029],{"type":44,"value":4030},"array\u002Fnull",{"type":39,"tag":149,"props":4032,"children":4033},{},[4034],{"type":44,"value":4035},"POI text snippets",{"type":39,"tag":113,"props":4037,"children":4038},{},[4039,4048,4052],{"type":39,"tag":149,"props":4040,"children":4041},{},[4042],{"type":39,"tag":133,"props":4043,"children":4045},{"className":4044},[],[4046],{"type":44,"value":4047},"grounding.map",{"type":39,"tag":149,"props":4049,"children":4050},{},[4051],{"type":44,"value":3859},{"type":39,"tag":149,"props":4053,"children":4054},{},[4055],{"type":44,"value":4056},"Map\u002Fplace results (only with local recall)",{"type":39,"tag":113,"props":4058,"children":4059},{},[4060,4069,4073],{"type":39,"tag":149,"props":4061,"children":4062},{},[4063],{"type":39,"tag":133,"props":4064,"children":4066},{"className":4065},[],[4067],{"type":44,"value":4068},"grounding.map[].name",{"type":39,"tag":149,"props":4070,"children":4071},{},[4072],{"type":44,"value":3966},{"type":39,"tag":149,"props":4074,"children":4075},{},[4076],{"type":44,"value":4077},"Place name",{"type":39,"tag":113,"props":4079,"children":4080},{},[4081,4090,4094],{"type":39,"tag":149,"props":4082,"children":4083},{},[4084],{"type":39,"tag":133,"props":4085,"children":4087},{"className":4086},[],[4088],{"type":44,"value":4089},"grounding.map[].url",{"type":39,"tag":149,"props":4091,"children":4092},{},[4093],{"type":44,"value":3966},{"type":39,"tag":149,"props":4095,"children":4096},{},[4097],{"type":44,"value":4098},"Place source URL",{"type":39,"tag":113,"props":4100,"children":4101},{},[4102,4111,4115],{"type":39,"tag":149,"props":4103,"children":4104},{},[4105],{"type":39,"tag":133,"props":4106,"children":4108},{"className":4107},[],[4109],{"type":44,"value":4110},"grounding.map[].title",{"type":39,"tag":149,"props":4112,"children":4113},{},[4114],{"type":44,"value":3966},{"type":39,"tag":149,"props":4116,"children":4117},{},[4118],{"type":44,"value":4119},"Place page title",{"type":39,"tag":113,"props":4121,"children":4122},{},[4123,4132,4136],{"type":39,"tag":149,"props":4124,"children":4125},{},[4126],{"type":39,"tag":133,"props":4127,"children":4129},{"className":4128},[],[4130],{"type":44,"value":4131},"grounding.map[].snippets",{"type":39,"tag":149,"props":4133,"children":4134},{},[4135],{"type":44,"value":4030},{"type":39,"tag":149,"props":4137,"children":4138},{},[4139],{"type":44,"value":4140},"Place text snippets",{"type":39,"tag":113,"props":4142,"children":4143},{},[4144,4152,4156],{"type":39,"tag":149,"props":4145,"children":4146},{},[4147],{"type":39,"tag":133,"props":4148,"children":4150},{"className":4149},[],[4151],{"type":44,"value":2944},{"type":39,"tag":149,"props":4153,"children":4154},{},[4155],{"type":44,"value":3837},{"type":39,"tag":149,"props":4157,"children":4158},{},[4159],{"type":44,"value":4160},"Metadata for all referenced URLs, keyed by URL",{"type":39,"tag":113,"props":4162,"children":4163},{},[4164,4173,4177],{"type":39,"tag":149,"props":4165,"children":4166},{},[4167],{"type":39,"tag":133,"props":4168,"children":4170},{"className":4169},[],[4171],{"type":44,"value":4172},"sources[url].title",{"type":39,"tag":149,"props":4174,"children":4175},{},[4176],{"type":44,"value":898},{"type":39,"tag":149,"props":4178,"children":4179},{},[4180],{"type":44,"value":3906},{"type":39,"tag":113,"props":4182,"children":4183},{},[4184,4193,4197],{"type":39,"tag":149,"props":4185,"children":4186},{},[4187],{"type":39,"tag":133,"props":4188,"children":4190},{"className":4189},[],[4191],{"type":44,"value":4192},"sources[url].hostname",{"type":39,"tag":149,"props":4194,"children":4195},{},[4196],{"type":44,"value":898},{"type":39,"tag":149,"props":4198,"children":4199},{},[4200],{"type":44,"value":4201},"Source hostname",{"type":39,"tag":113,"props":4203,"children":4204},{},[4205,4214,4218],{"type":39,"tag":149,"props":4206,"children":4207},{},[4208],{"type":39,"tag":133,"props":4209,"children":4211},{"className":4210},[],[4212],{"type":44,"value":4213},"sources[url].age",{"type":39,"tag":149,"props":4215,"children":4216},{},[4217],{"type":44,"value":4030},{"type":39,"tag":149,"props":4219,"children":4220},{},[4221],{"type":44,"value":4222},"Page modification dates (when available)",{"type":39,"tag":51,"props":4224,"children":4225},{},[4226,4231],{"type":39,"tag":55,"props":4227,"children":4228},{},[4229],{"type":44,"value":4230},"Note",{"type":44,"value":4232},": Snippets may contain plain text OR JSON-serialized structured data (tables, schemas, code blocks). LLMs handle this mixed format well.",{"type":39,"tag":98,"props":4234,"children":4236},{"id":4235},"use-cases",[4237],{"type":44,"value":4238},"Use Cases",{"type":39,"tag":349,"props":4240,"children":4241},{},[4242,4252,4262,4272,4282,4292],{"type":39,"tag":353,"props":4243,"children":4244},{},[4245,4250],{"type":39,"tag":55,"props":4246,"children":4247},{},[4248],{"type":44,"value":4249},"AI Agents",{"type":44,"value":4251},": Give your agent a web search tool that returns ready-to-use content in a single call",{"type":39,"tag":353,"props":4253,"children":4254},{},[4255,4260],{"type":39,"tag":55,"props":4256,"children":4257},{},[4258],{"type":44,"value":4259},"RAG Pipelines",{"type":44,"value":4261},": Ground LLM responses in fresh, relevant web content",{"type":39,"tag":353,"props":4263,"children":4264},{},[4265,4270],{"type":39,"tag":55,"props":4266,"children":4267},{},[4268],{"type":44,"value":4269},"AI Assistants & Chatbots",{"type":44,"value":4271},": Provide factual answers backed by real sources",{"type":39,"tag":353,"props":4273,"children":4274},{},[4275,4280],{"type":39,"tag":55,"props":4276,"children":4277},{},[4278],{"type":44,"value":4279},"Question Answering",{"type":44,"value":4281},": Retrieve focused context for specific queries",{"type":39,"tag":353,"props":4283,"children":4284},{},[4285,4290],{"type":39,"tag":55,"props":4286,"children":4287},{},[4288],{"type":44,"value":4289},"Fact Checking",{"type":44,"value":4291},": Verify claims against current web content",{"type":39,"tag":353,"props":4293,"children":4294},{},[4295,4300],{"type":39,"tag":55,"props":4296,"children":4297},{},[4298],{"type":44,"value":4299},"Content Research",{"type":44,"value":4301},": Gather source material on any topic with one API call",{"type":39,"tag":98,"props":4303,"children":4305},{"id":4304},"best-practices",[4306],{"type":44,"value":4307},"Best Practices",{"type":39,"tag":349,"props":4309,"children":4310},{},[4311,4336,4354],{"type":39,"tag":353,"props":4312,"children":4313},{},[4314,4319,4321,4327,4328,4334],{"type":39,"tag":55,"props":4315,"children":4316},{},[4317],{"type":44,"value":4318},"Token budget",{"type":44,"value":4320},": Start with defaults (",{"type":39,"tag":133,"props":4322,"children":4324},{"className":4323},[],[4325],{"type":44,"value":4326},"maximum_number_of_tokens=8192",{"type":44,"value":2487},{"type":39,"tag":133,"props":4329,"children":4331},{"className":4330},[],[4332],{"type":44,"value":4333},"count=20",{"type":44,"value":4335},"). Reduce for simple lookups, increase for complex research.",{"type":39,"tag":353,"props":4337,"children":4338},{},[4339,4344,4346,4352],{"type":39,"tag":55,"props":4340,"children":4341},{},[4342],{"type":44,"value":4343},"Source quality",{"type":44,"value":4345},": Use Goggles to restrict to trusted sources. Set ",{"type":39,"tag":133,"props":4347,"children":4349},{"className":4348},[],[4350],{"type":44,"value":4351},"context_threshold_mode=strict",{"type":44,"value":4353}," when precision > recall.",{"type":39,"tag":353,"props":4355,"children":4356},{},[4357,4362,4364,4369,4371,4376],{"type":39,"tag":55,"props":4358,"children":4359},{},[4360],{"type":44,"value":4361},"Performance",{"type":44,"value":4363},": Use smallest ",{"type":39,"tag":133,"props":4365,"children":4367},{"className":4366},[],[4368],{"type":44,"value":1004},{"type":44,"value":4370}," and ",{"type":39,"tag":133,"props":4372,"children":4374},{"className":4373},[],[4375],{"type":44,"value":1110},{"type":44,"value":4377}," that meet your needs. For local queries, provide location headers.",{"type":39,"tag":4379,"props":4380,"children":4381},"style",{},[4382],{"type":44,"value":4383},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4385,"total":2890},[4386,4395,4411,4423,4432,4438,4450,4460,4469,4478,4487,4499],{"slug":138,"name":138,"fn":4387,"description":4388,"org":4389,"tags":4390,"stars":22,"repoUrl":23,"updatedAt":4394},"get AI-grounded answers via Brave","USE FOR AI-grounded answers via OpenAI-compatible \u002Fchat\u002Fcompletions. Two modes: single-search (fast) or deep research (enable_research=true, thorough multi-search). Streaming\u002Fblocking. Citations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4391,4392,4393],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:53.15861",{"slug":4396,"name":4396,"fn":4397,"description":4398,"org":4399,"tags":4400,"stars":22,"repoUrl":23,"updatedAt":4410},"bx","perform token-efficient web searches","USE FOR web search, research, RAG, grounding, browse, find, lookups, fact-checking, documentation, agentic AI. All-in-one, optimized for AI agents. Pre-extracted, token-budgeted web content, deep research, news, images, videos, places, custom ranking",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4401,4404,4405,4406,4409],{"name":4402,"slug":4403,"type":15},"AI Context","ai-context",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":4407,"slug":4408,"type":15},"Research","research",{"name":20,"slug":21,"type":15},"2026-04-08T04:55:31.217318",{"slug":4412,"name":4412,"fn":4413,"description":4414,"org":4415,"tags":4416,"stars":22,"repoUrl":23,"updatedAt":4422},"bx-search","search the web via Brave CLI","Web search using the Brave Search CLI (`bx`). Use for ALL web search requests — including \"search for\", \"look up\", \"find\", \"what is\", \"how do I\", \"google this\", and any request needing current or external information. Prefer this over the built-in web_search tool whenever bx is available. Also use for: documentation lookup, troubleshooting research, RAG grounding, news, images, videos, local places, and AI-synthesized answers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4417,4418,4421],{"name":13,"slug":14,"type":15},{"name":4419,"slug":4420,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"2026-04-06T18:06:05.777322",{"slug":4424,"name":4424,"fn":4425,"description":4426,"org":4427,"tags":4428,"stars":22,"repoUrl":23,"updatedAt":4431},"images-search","search images via Brave Search","USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4429,4430],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:04.504482",{"slug":4,"name":4,"fn":5,"description":6,"org":4433,"tags":4434,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4435,4436,4437],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":4439,"name":4439,"fn":4440,"description":4441,"org":4442,"tags":4443,"stars":22,"repoUrl":23,"updatedAt":4449},"local-descriptions","fetch AI-generated descriptions for local POIs","USE FOR getting AI-generated POI text descriptions. Requires POI IDs obtained from web-search (with result_filter=locations). Returns markdown descriptions grounded in web search context. Max 20 IDs per request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4444,4445,4448],{"name":13,"slug":14,"type":15},{"name":4446,"slug":4447,"type":15},"Local Search","local-search",{"name":20,"slug":21,"type":15},"2026-04-06T18:06:03.239884",{"slug":4451,"name":4451,"fn":4452,"description":4453,"org":4454,"tags":4455,"stars":22,"repoUrl":23,"updatedAt":4459},"local-pois","fetch local business and POI details","USE FOR getting local business\u002FPOI details. Requires POI IDs obtained from web-search (with result_filter=locations). Returns full business information including ratings, hours, contact info. Max 20 IDs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4456,4457,4458],{"name":13,"slug":14,"type":15},{"name":4446,"slug":4447,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:55.722361",{"slug":4461,"name":4461,"fn":4462,"description":4463,"org":4464,"tags":4465,"stars":22,"repoUrl":23,"updatedAt":4468},"news-search","search news articles","USE FOR news search. Returns news articles with title, URL, description, age, thumbnail. Supports freshness and date range filtering, SafeSearch filter and Goggles for custom ranking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4466,4467],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:01.995483",{"slug":4470,"name":4470,"fn":4471,"description":4472,"org":4473,"tags":4474,"stars":22,"repoUrl":23,"updatedAt":4477},"spellcheck","spell-correct search queries","USE FOR spell correction. Returns corrected query if misspelled. Most search endpoints have spellcheck built-in; use this only for pre-search query cleanup or \"Did you mean?\" UI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4475,4476],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:59.499925",{"slug":4479,"name":4479,"fn":4480,"description":4481,"org":4482,"tags":4483,"stars":22,"repoUrl":23,"updatedAt":4486},"suggest","autocomplete search queries","USE FOR query autocomplete\u002Fsuggestions. Fast (\u003C100ms). Returns suggested queries as user types. Supports rich suggestions with entity info. Typo-resilient.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4484,4485],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:54.426217",{"slug":4488,"name":4488,"fn":4489,"description":4490,"org":4491,"tags":4492,"stars":22,"repoUrl":23,"updatedAt":4498},"videos-search","search videos via Brave Search","USE FOR video search. Returns videos with title, URL, thumbnail, duration, view count, creator. Supports freshness filters, SafeSearch, pagination.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4493,4494,4495],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":4496,"slug":4497,"type":15},"Video","video","2026-04-06T18:05:56.996883",{"slug":4500,"name":4500,"fn":4501,"description":4502,"org":4503,"tags":4504,"stars":22,"repoUrl":23,"updatedAt":4507},"web-search","search the web via Brave API","USE FOR web search. Returns ranked results with snippets, URLs, thumbnails. Supports freshness filters, SafeSearch, Goggles for custom ranking, pagination. Primary search endpoint.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4505,4506],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:00.748827",{"items":4509,"total":2890},[4510,4516,4524,4530,4535,4541,4547],{"slug":138,"name":138,"fn":4387,"description":4388,"org":4511,"tags":4512,"stars":22,"repoUrl":23,"updatedAt":4394},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4513,4514,4515],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":4396,"name":4396,"fn":4397,"description":4398,"org":4517,"tags":4518,"stars":22,"repoUrl":23,"updatedAt":4410},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4519,4520,4521,4522,4523],{"name":4402,"slug":4403,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":4407,"slug":4408,"type":15},{"name":20,"slug":21,"type":15},{"slug":4412,"name":4412,"fn":4413,"description":4414,"org":4525,"tags":4526,"stars":22,"repoUrl":23,"updatedAt":4422},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4527,4528,4529],{"name":13,"slug":14,"type":15},{"name":4419,"slug":4420,"type":15},{"name":20,"slug":21,"type":15},{"slug":4424,"name":4424,"fn":4425,"description":4426,"org":4531,"tags":4532,"stars":22,"repoUrl":23,"updatedAt":4431},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4533,4534],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":4536,"tags":4537,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4538,4539,4540],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":4439,"name":4439,"fn":4440,"description":4441,"org":4542,"tags":4543,"stars":22,"repoUrl":23,"updatedAt":4449},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4544,4545,4546],{"name":13,"slug":14,"type":15},{"name":4446,"slug":4447,"type":15},{"name":20,"slug":21,"type":15},{"slug":4451,"name":4451,"fn":4452,"description":4453,"org":4548,"tags":4549,"stars":22,"repoUrl":23,"updatedAt":4459},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4550,4551,4552],{"name":13,"slug":14,"type":15},{"name":4446,"slug":4447,"type":15},{"name":20,"slug":21,"type":15}]