-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathmap.ts
More file actions
94 lines (88 loc) · 2.73 KB
/
Copy pathmap.ts
File metadata and controls
94 lines (88 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import { contextDevHosting } from '@/tools/context_dev/hosting'
import type { ContextDevMapParams, ContextDevMapResponse } from '@/tools/context_dev/types'
import {
appendParam,
CONTEXT_DEV_BASE_URL,
CREDIT_OUTPUTS,
contextDevHeaders,
extractCreditMetadata,
parseContextDevResponse,
} from '@/tools/context_dev/utils'
import type { ToolConfig } from '@/tools/types'
export const contextDevMapTool: ToolConfig<ContextDevMapParams, ContextDevMapResponse> = {
id: 'context_dev_map',
name: 'Context.dev Map',
description: 'Build a sitemap of a domain and return every discovered page URL.',
version: '1.0.0',
hosting: contextDevHosting<ContextDevMapParams>(),
params: {
domain: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The domain to build a sitemap for (e.g., "example.com")',
},
maxLinks: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Maximum number of URLs to return (1-100000, default: 10000)',
},
urlRegex: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'RE2-compatible regex to filter URLs (max 256 chars)',
},
timeoutMS: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Request timeout in milliseconds (1000-300000)',
},
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Context.dev API key',
},
},
request: {
method: 'GET',
url: (params) => {
const url = new URL(`${CONTEXT_DEV_BASE_URL}/web/scrape/sitemap`)
appendParam(url.searchParams, 'domain', params.domain)
appendParam(url.searchParams, 'maxLinks', params.maxLinks)
appendParam(url.searchParams, 'urlRegex', params.urlRegex)
appendParam(url.searchParams, 'timeoutMS', params.timeoutMS)
return url.toString()
},
headers: (params) => contextDevHeaders(params.apiKey),
},
transformResponse: async (response: Response) => {
const data = await parseContextDevResponse(response)
return {
success: true,
output: {
domain: data.domain ?? '',
urls: data.urls ?? [],
meta: data.meta ?? {},
...extractCreditMetadata(data.key_metadata),
},
}
},
outputs: {
domain: { type: 'string', description: 'The domain that was mapped' },
urls: {
type: 'array',
description: 'All page URLs discovered from the sitemap',
items: { type: 'string', description: 'Page URL' },
},
meta: {
type: 'object',
description:
'Sitemap discovery stats (sitemapsDiscovered, sitemapsFetched, sitemapsSkipped, errors)',
},
...CREDIT_OUTPUTS,
},
}