Skip to content

Commit bf0286a

Browse files
waleedlatif1claude
andcommitted
fix(brightdata): avoid inner quotes in description to fix docs generation
The docs generator regex truncates at inner quotes. Reword the download_snapshot description to avoid embedded double quotes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 703058c commit bf0286a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/docs/content/docs/en/tools/brightdata.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Check the progress of an async Bright Data scraping job. Returns status: startin
161161

162162
### `brightdata_download_snapshot`
163163

164-
Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status "ready".
164+
Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have ready status.
165165

166166
#### Input
167167

apps/sim/app/(landing)/integrations/data/integrations.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
"name": "Agiloft",
215215
"description": "Manage records in Agiloft CLM",
216216
"longDescription": "Integrate with Agiloft contract lifecycle management to create, read, update, delete, and search records. Supports file attachments, SQL-based selection, saved searches, and record locking across any table in your knowledge base.",
217-
"bgColor": "#263A5C",
217+
"bgColor": "#FFFFFF",
218218
"iconName": "AgiloftIcon",
219219
"docsUrl": "https://docs.sim.ai/tools/agiloft",
220220
"operations": [
@@ -1779,7 +1779,7 @@
17791779
},
17801780
{
17811781
"name": "Download Snapshot",
1782-
"description": "Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status "
1782+
"description": "Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have ready status."
17831783
},
17841784
{
17851785
"name": "Cancel Snapshot",

apps/sim/tools/brightdata/download_snapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const brightDataDownloadSnapshotTool: ToolConfig<
1111
id: 'brightdata_download_snapshot',
1212
name: 'Bright Data Download Snapshot',
1313
description:
14-
'Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status "ready".',
14+
'Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have ready status.',
1515
version: '1.0.0',
1616

1717
params: {

0 commit comments

Comments
 (0)