Skip to content

Commit 22c1b34

Browse files
committed
chore: update docs
1 parent fd989cd commit 22c1b34

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ User Query
4444
4545
┌─────────────────────────────────────────────────────────┐
4646
│ Stage 2 · Browser Pipeline │
47-
│ Connects to Bright Data Scraping Browser via CDP │
47+
│ Connects to Bright Data Browser API via CDP
4848
│ Opens each URL with a real Chromium instance │
4949
│ Takes initial screenshot → streamed to UI live │
5050
└────────────────────────┬────────────────────────────────┘
@@ -82,7 +82,7 @@ User Query
8282
| **Styling** | [Tailwind CSS 4](https://tailwindcss.com) |
8383
| **Agent Orchestration** | [LangGraph](https://langchain-ai.github.io/langgraphjs/) |
8484
| **Browser Automation** | [Playwright Core](https://playwright.dev) + Chrome DevTools Protocol (CDP) |
85-
| **Web Infrastructure** | [Bright Data Scraping Browser](https://brightdata.com/products/scraping-browser) + SERP API |
85+
| **Web Infrastructure** | [Bright Data Browser API](https://brightdata.com/products/scraping-browser) + SERP API |
8686
| **Vision LLM** | [Yutori N1](https://yutori.com) (multimodal, tool-use) |
8787
| **Extraction LLM** | [OpenRouter](https://openrouter.ai) → Google Gemini Flash |
8888
| **Rate Limiting** | [Upstash Redis](https://upstash.com) (per-IP, 1 search / 24h for the demo) |
@@ -113,7 +113,7 @@ The agent autonomously detects and browses any of these platforms based on Googl
113113
### Prerequisites
114114

115115
- Node.js 18+
116-
- A [Bright Data](https://brightdata.com) account with Scraping Browser + SERP API enabled
116+
- A [Bright Data](https://brightdata.com) account with Browser API + SERP API enabled
117117
- A [Yutori N1](https://yutori.com) API key
118118
- An [OpenRouter](https://openrouter.ai) API key
119119
- An [Upstash](https://upstash.com) Redis database (for rate limiting)
@@ -139,8 +139,8 @@ Create a `.env.local` file in the project root:
139139
# Yutori N1 — vision LLM for autonomous browsing
140140
YUTORI_API_KEY=your_yutori_api_key
141141
142-
# Bright Data — Scraping Browser CDP WebSocket endpoint
143-
# Found in your Bright Data dashboard under Scraping Browser > Access Parameters
142+
# Bright Data — Browser API CDP WebSocket endpoint
143+
# Found in your Bright Data dashboard under Browser API > Access Parameters
144144
BRD_CDP_URL=wss://brd-customer-<id>-zone-<zone>:<password>@brd.superproxy.io:9222
145145
146146
# Bright Data — API key for SERP and Web Unlocker
@@ -295,7 +295,7 @@ When running locally with your own keys, this limit is not enforced unless you c
295295

296296
[Bright Data](https://brightdata.com) provides the web infrastructure that makes the agent possible:
297297

298-
- **Scraping Browser** — a real Chromium instance with residential proxy routing, anti-bot bypass, and JavaScript execution, connected via CDP
298+
- **Browser API** — a real Chromium instance with residential proxy routing, anti-bot bypass, and JavaScript execution, connected via CDP
299299
- **SERP API** — reliable Google search results to discover the right ticket platform URLs
300300

301301
</td>

src/components/AgentSummary.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function AgentSummary({
5454
{
5555
label: "Pages Browsed",
5656
value: stats.pagesOpened,
57-
sub: "Scraping Browser",
57+
sub: "Browser API",
5858
icon: (
5959
<svg className="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
6060
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9" />
@@ -117,7 +117,7 @@ export function AgentSummary({
117117
<p className="mt-4 text-xs leading-relaxed text-white/40">
118118
Searched Google via <span className="text-white/60">Bright Data SERP API</span>,
119119
opened {stats.pagesOpened} ticket {stats.pagesOpened === 1 ? "site" : "sites"} in
120-
a <span className="text-white/60">Bright Data Scraping Browser</span>,
120+
a <span className="text-white/60">Bright Data Browser API</span>,
121121
autonomously navigated with <span className="text-white/60">Yutori N1</span> vision
122122
model, and extracted {ticketCount} structured {ticketCount === 1 ? "result" : "results"}.
123123
</p>

0 commit comments

Comments
 (0)