2026-06-25 15:04:12 +08:00
/**
2026-07-13 23:27:00 +08:00
* The model-facing `web_fetch` tool. This module owns its schema, validation, and presentation;
* `ctx.web` owns retrieval. Timeout is deployment policy, not a model argument: config becomes
* `ToolDefinition.timeoutMs`, timeout policy enforces it, and this tool forwards the resulting
* signal. A provider timeout remains a backstop for direct seam callers.
2026-06-25 15:04:12 +08:00
*/
import type { Context } from 'cordis'
2026-07-27 00:22:13 +08:00
import TurndownService from 'turndown'
import { gfm } from '@joplin/turndown-plugin-gfm'
2026-06-25 15:04:12 +08:00
import { defineTool } from '@deepseek-ai/dsh-tools'
2026-07-30 17:04:09 +08:00
import type { GenericCallView , JsonValue , ToolResult , WebFetchResultView } from '@deepseek-ai/dsh-tools'
2026-06-25 15:04:12 +08:00
import type { WebFetchBody , WebFetchResult } from '@deepseek-ai/dsh-web'
import { assertNever } from '@deepseek-ai/dsh-llm'
import type { } from '@deepseek-ai/dsh-system-prompt'
2026-07-27 00:22:13 +08:00
/**
* The shared HTML→markdown converter: turndown over its bundled domino DOM,
* with GitHub-flavored tables/strikethrough (`@joplin/turndown-plugin-gfm`).
* The style options are fixed model-facing presentation (matching the repo's
* markdown conventions), not deployment tunables. `remove` drops non-content
* elements wholesale — turndown's default keeps their text. The instance is
* stateless across `turndown()` calls and safe to share.
*/
const turndown = new TurndownService ( {
headingStyle : 'atx' ,
codeBlockStyle : 'fenced' ,
bulletListMarker : '-' ,
} )
turndown . use ( gfm )
turndown . remove ( [ 'script' , 'style' , 'noscript' ] )
2026-06-25 15:04:12 +08:00
2026-07-27 16:40:02 +08:00
/** Render one GFM table cell without interpreting HTML span counts. */
function renderTableCell ( content : string , index : number ) : string {
const prefix = index === 0 ? '| ' : ' '
const escaped = content . trim ( ) . replace ( /\n\r/g , '<br>' ) . replace ( /\n/g , '<br>' ) . replace ( /\|+/g , '\\|' ) . padEnd ( 3 , ' ' )
return ` ${ prefix } ${ escaped } | `
}
/** Whether a row is the table's Markdown heading row. */
function isTableHeadingRow ( row : HTMLTableRowElement ) : boolean {
const cells = Array . from ( row . cells )
const section = row . parentElement as HTMLTableSectionElement
const table = section . parentElement as HTMLTableElement
return ( section . nodeName === 'THEAD' || table . rows [ 0 ] === row )
&& cells . every ( cell = > cell . nodeName === 'TH' )
}
/** Map an HTML table-cell alignment to the GFM separator marker. */
function tableBorder ( cell : HTMLTableCellElement ) : string {
const alignment = ( cell . getAttribute ( 'align' ) || cell . style . textAlign || '' ) . toLowerCase ( )
if ( alignment === 'left' ) return ':---'
if ( alignment === 'right' ) return '---:'
if ( alignment === 'center' ) return ':---:'
return '---'
}
turndown . addRule ( 'tableCellWithoutSpanExpansion' , {
filter : [ 'th' , 'td' ] ,
replacement ( content , node ) {
const cell = node as HTMLTableCellElement
const row = cell . parentNode as HTMLTableRowElement
// GFM cannot represent spanning cells. Ignoring colspan keeps conversion
// work and output proportional to the source instead of the numeric attribute.
return renderTableCell ( content , Array . prototype . indexOf . call ( row . childNodes , cell ) )
} ,
} )
turndown . addRule ( 'tableRowWithoutSpanExpansion' , {
filter : 'tr' ,
replacement ( content , node ) {
const row = node as HTMLTableRowElement
const border = isTableHeadingRow ( row )
? Array . from ( row . cells , ( cell , index ) = > renderTableCell ( tableBorder ( cell ) , index ) ) . join ( '' )
: ''
return ` \ n ${ content } ${ border . length > 0 ? ` \ n ${ border } ` : '' } `
} ,
} )
2026-07-06 22:09:30 +08:00
/**
2026-07-08 11:18:27 +08:00
* Validate value constraints the schema DSL can't express: a non-blank `url`.
* Throws a plain `Error` otherwise. No timeout parameter — the tool-call budget
2026-07-08 14:40:14 +08:00
* is deployment policy declared via `fetchTimeoutMs` config and enforced by
* `@deepseek-ai/dsh-timeout-policy`, not a model argument.
2026-07-06 22:09:30 +08:00
*
* @param args - the schema-validated `web_fetch` arguments.
2026-07-08 11:18:27 +08:00
* @returns the arguments as the seam's request fields.
2026-07-06 22:09:30 +08:00
*/
2026-07-08 10:06:07 +08:00
export function parseFetchArgs ( args : { url : string } ) : { url : string } {
2026-06-25 15:04:12 +08:00
if ( args . url . trim ( ) . length === 0 ) throw new Error ( 'url must be a non-empty string' )
2026-07-08 10:06:07 +08:00
return { url : args.url }
2026-06-25 15:04:12 +08:00
}
2026-07-27 12:41:36 +08:00
/**
* Nesting-depth ceiling above which HTML skips conversion and passes through
* raw. Conversion runs synchronously on the event loop, and unclosed-tag
* nesting makes domino's tree (and turndown's walk over it) superlinear —
* measured: depth 512 ≈ 0.15s, 2,000 ≈ 2s, 20,000 ≈ 5s — during which the
* cooperative `fetchTimeoutMs` timer cannot fire. Real pages nest a few dozen
* levels; 512 is far above content and far below weaponizable. A robustness
* invariant, not a tunable.
*/
const MAX_CONVERSION_DEPTH = 512
2026-07-27 16:40:02 +08:00
/** Elements that never take a closing tag, so they do not grow the lexical stack. */
2026-07-27 12:41:36 +08:00
const VOID_ELEMENTS = new Set ( [
'area' , 'base' , 'br' , 'col' , 'embed' , 'hr' , 'img' , 'input' ,
'link' , 'meta' , 'param' , 'source' , 'track' , 'wbr' ,
] )
2026-07-27 16:40:02 +08:00
/** Elements whose contents HTML parses as text until their matching end tag. */
const RAW_TEXT_ELEMENTS = new Set ( [ 'script' , 'style' , 'noscript' ] )
/** Whether a character can occur after a raw-text end-tag name. */
function isTagBoundary ( char : string | undefined ) : boolean {
return char === undefined || char === '>' || char === '/' || /\s/ . test ( char )
}
/** Find the matching raw-text end tag without interpreting markup-like body text. */
function findRawTextEnd ( lowerHtml : string , name : string , from : number ) : number {
const prefix = ` </ ${ name } `
let candidate = lowerHtml . indexOf ( prefix , from )
while ( candidate !== - 1 && ! isTagBoundary ( lowerHtml [ candidate + prefix . length ] ) ) {
candidate = lowerHtml . indexOf ( prefix , candidate + prefix . length )
}
return candidate
}
2026-07-27 12:41:36 +08:00
/**
2026-07-27 16:40:02 +08:00
* Conservatively reject HTML whose lexical element stack crosses the conversion
* depth ceiling. The single pass ignores closing tags inside comments, skips
* raw-text bodies, respects quoted `>` characters, and only accepts a closing
* tag for the current element; malformed input therefore over-counts rather
* than hiding nesting.
2026-07-27 12:41:36 +08:00
*
* @param html - the decoded HTML body.
2026-07-27 16:40:02 +08:00
* @returns whether the body crosses {@link MAX_CONVERSION_DEPTH}.
2026-07-27 12:41:36 +08:00
*/
2026-07-27 16:40:02 +08:00
function exceedsConversionDepth ( html : string ) : boolean {
const lowerHtml = html . toLowerCase ( )
const openElements : string [ ] = [ ]
let offset = 0
let inComment = false
while ( offset < html . length ) {
const start = html . indexOf ( '<' , offset )
if ( inComment ) {
const end = html . indexOf ( '-->' , offset )
if ( end !== - 1 && ( start === - 1 || end < start ) ) {
inComment = false
offset = end + 3
continue
}
}
if ( start === - 1 ) break
if ( ! inComment && html . startsWith ( '<!--' , start ) ) {
inComment = true
offset = start + 4
continue
}
let cursor = start + 1
const closing = html [ cursor ] === '/'
if ( closing ) cursor += 1
const nameStart = cursor
while ( /[a-zA-Z0-9-]/ . test ( html [ cursor ] ? ? '' ) ) cursor += 1
if ( cursor === nameStart || ! /[a-zA-Z]/ . test ( html . charAt ( nameStart ) ) ) {
offset = start + 1
continue
}
const name = lowerHtml . slice ( nameStart , cursor )
let quote : '"' | "'" | undefined
while ( cursor < html . length ) {
const char = html [ cursor ]
cursor += 1
if ( quote !== undefined ) {
if ( char === quote ) quote = undefined
} else if ( char === '"' || char === "'" ) {
quote = char
} else if ( char === '>' ) {
break
}
}
if ( html [ cursor - 1 ] !== '>' ) break
if ( closing ) {
if ( ! inComment && openElements . at ( - 1 ) === name ) openElements . pop ( )
2026-07-27 12:41:36 +08:00
} else {
2026-07-27 16:40:02 +08:00
let last = cursor - 2
while ( /\s/ . test ( html . charAt ( last ) ) ) last -= 1
if ( ! VOID_ELEMENTS . has ( name ) && html [ last ] !== '/' ) {
openElements . push ( name )
if ( openElements . length > MAX_CONVERSION_DEPTH ) return true
if ( ! inComment && RAW_TEXT_ELEMENTS . has ( name ) ) {
const end = findRawTextEnd ( lowerHtml , name , cursor )
if ( end === - 1 ) break
offset = end
continue
}
}
2026-07-27 12:41:36 +08:00
}
2026-07-27 16:40:02 +08:00
offset = cursor
2026-07-27 12:41:36 +08:00
}
2026-07-27 16:40:02 +08:00
return false
}
interface RenderedBody {
/** Converted text, or raw HTML when conversion is unsafe or fails. */
text : string
/** Whether the source was cut before conversion to bound synchronous work. */
sourceTruncated : boolean
2026-07-27 12:41:36 +08:00
}
2026-07-06 22:09:30 +08:00
/**
* Render a fetched body to model-facing markdown text.
*
2026-07-27 00:22:13 +08:00
* @param body - the decoded body; `html` is converted via turndown, `text`
2026-07-27 16:40:02 +08:00
* passes through verbatim.
* @param maxInputChars - maximum source characters processed synchronously.
* @returns the rendered prefix and whether the source was cut. HTML nested
* beyond {@link MAX_CONVERSION_DEPTH} or rejected by turndown passes through
* raw; a degraded page beats an error for a body the provider decoded.
2026-07-06 22:09:30 +08:00
*/
2026-07-27 16:40:02 +08:00
function renderBody ( body : WebFetchBody , maxInputChars : number ) : RenderedBody {
const content = body . content . slice ( 0 , maxInputChars )
const sourceTruncated = content . length !== body . content . length
2026-06-25 15:04:12 +08:00
switch ( body . kind ) {
case 'html' :
2026-07-27 16:40:02 +08:00
if ( exceedsConversionDepth ( content ) ) return { text : content , sourceTruncated }
2026-07-27 00:22:13 +08:00
try {
2026-07-27 16:40:02 +08:00
return { text : turndown.turndown ( content ) , sourceTruncated }
2026-07-27 00:22:13 +08:00
} catch {
2026-07-27 16:40:02 +08:00
// turndown's DOM walk recurses per element; malformed markup the lexical
// guard cannot model can still throw RangeError. Provider errors stay
2026-07-27 00:22:13 +08:00
// structured WebErrors upstream; conversion failure downgrades to raw HTML.
2026-07-27 16:40:02 +08:00
return { text : content , sourceTruncated }
2026-07-27 00:22:13 +08:00
}
2026-06-25 15:04:12 +08:00
case 'text' :
2026-07-27 16:40:02 +08:00
return { text : content , sourceTruncated }
2026-06-25 15:04:12 +08:00
/* v8 ignore next 2 -- WebFetchBody is a closed union; this arm is unreachable and only makes adding a kind a compile error. */
default :
return assertNever ( body , 'unhandled web fetch body kind' )
}
}
2026-07-27 12:41:36 +08:00
/** The truncation notice appended when the provider or the output cap cut content. */
const TRUNCATION_FOOTER = '\n\n(Content truncated. Fetch a more specific URL or section for the full text.)'
2026-07-30 20:01:41 +08:00
/** A rendered fetch output: the model-facing text and its effective truncation. */
interface RenderedFetch {
/** The complete bounded output — header, rendered body, and truncation footer. */
text : string
/**
* True when the provider capped the body, a pre-conversion source cut applied,
* or the complete output exceeded `maxOutputChars`. This is the effective
* truncation the returned text reflects (its footer), wider than the
* provider-only `WebFetchResult.truncated`.
*/
truncated : boolean
}
2026-07-06 22:09:30 +08:00
/**
2026-07-30 20:01:41 +08:00
* Render a fetch result to its bounded model-facing text and effective
* truncation. The single source of both the `render` text and the fetch card's
* `truncated`, so the card never disagrees with the text the model saw. The cap
* limits the source prefix processed synchronously, then applies again where the
* complete output — header, rendered body, and footer — is known.
2026-07-06 22:09:30 +08:00
*
2026-07-30 21:28:54 +08:00
* Package-internal: the only callers are {@link formatFetchOutput} and
* {@link fetchMetaFromValue}, both reached through the tool registry, which
* deep-freezes the result value before calling `output.render` and
* `output.presentationMeta`. The conversion is memoized per
* `(result, maxOutputChars)` so the synchronous DOM parse and turndown walk run
* once, not twice, on that same frozen value. Keeping it unexported means no
* caller can mutate a cached input or the returned {@link RenderedFetch}, so the
* memo needs no defensive copy.
2026-07-30 20:48:19 +08:00
*
2026-07-06 22:09:30 +08:00
* @param result - the seam's fetch outcome.
2026-07-27 12:41:36 +08:00
* @param maxOutputChars - cap on the complete returned string; a cut body gets
* the same fetch-something-narrower notice as provider-side truncation.
2026-07-30 20:01:41 +08:00
* @returns the complete `Fetched <url> (HTTP <status>)`-headed text and whether
* the provider, a source cut, or the cap trimmed the content.
2026-07-06 22:09:30 +08:00
*/
2026-07-30 21:28:54 +08:00
function renderFetchOutput ( result : WebFetchResult , maxOutputChars : number ) : RenderedFetch {
2026-07-30 20:48:19 +08:00
const byCap = renderCache . get ( result ) ? ? new Map < number , RenderedFetch > ( )
const cached = byCap . get ( maxOutputChars )
if ( cached !== undefined ) return cached
const computed = computeFetchOutput ( result , maxOutputChars )
byCap . set ( maxOutputChars , computed )
renderCache . set ( result , byCap )
return computed
}
/**
* Per-result memo for {@link renderFetchOutput}, keyed first on the frozen
* result value so a garbage-collected result drops its entry, then on the output
* cap (a deployment constant per registration). Collapses the registry's twin
* `render`/`presentationMeta` calls into one HTML→markdown conversion.
*/
const renderCache = new WeakMap < WebFetchResult , Map < number , RenderedFetch > > ( )
/**
* The uncached conversion behind {@link renderFetchOutput}. Separated so the
* memo wraps exactly one call site and the conversion logic stays pure.
*
* @param result - the seam's fetch outcome.
* @param maxOutputChars - cap on the complete returned string.
* @returns the bounded text and effective truncation.
*/
function computeFetchOutput ( result : WebFetchResult , maxOutputChars : number ) : RenderedFetch {
2026-07-27 12:41:36 +08:00
const header = ` Fetched ${ result . url } (HTTP ${ result . statusCode } ) \ n \ n `
2026-07-27 16:40:02 +08:00
const rendered = renderBody ( result . body , maxOutputChars )
const prefix = ` ${ header } ${ rendered . text } `
const truncated = result . truncated || rendered . sourceTruncated || prefix . length > maxOutputChars
const full = ` ${ prefix } ${ truncated ? TRUNCATION_FOOTER : '' } `
2026-07-30 20:01:41 +08:00
if ( full . length <= maxOutputChars ) return { text : full , truncated }
if ( maxOutputChars < TRUNCATION_FOOTER . length ) return { text : full.slice ( 0 , maxOutputChars ) , truncated }
return { text : ` ${ prefix . slice ( 0 , maxOutputChars - TRUNCATION_FOOTER . length ) } ${ TRUNCATION_FOOTER } ` , truncated }
}
/**
* Format a fetch result as one model-facing text block, bounded as a whole.
*
* @param result - the seam's fetch outcome.
* @param maxOutputChars - cap on the complete returned string.
* @returns the complete text from {@link renderFetchOutput}.
*/
export function formatFetchOutput ( result : WebFetchResult , maxOutputChars : number ) : string {
return renderFetchOutput ( result , maxOutputChars ) . text
2026-06-25 15:04:12 +08:00
}
2026-07-06 22:09:30 +08:00
/**
* Pending-call presentation: a fetch card titled by the URL.
*
* @param args - the raw tool arguments; only `url` feeds the view.
* @returns the generic card view (`kind: 'fetch'`) shown while the call runs.
*/
2026-07-08 10:06:07 +08:00
export function presentFetchCall ( args : { url : string } ) : GenericCallView {
2026-07-03 22:52:18 +08:00
return { card : 'generic' , title : args.url , kind : 'fetch' , rawInput : args.url }
2026-06-25 15:04:12 +08:00
}
2026-07-30 17:04:09 +08:00
/**
* The `web_fetch` tool's private `tool/result` `meta` payload: the fetch summary
* a UI cannot recover from the model-facing render text without reparsing its
* header line. Attached opaquely (as `JsonValue`) on the tool result and
* persisted with the session log, so `presentResult` reproduces the fetch card
* on replay. The body itself is already markdown in the result content, so it is
2026-07-30 20:01:41 +08:00
* not duplicated here. `truncated` is the effective truncation the render text
* reflects, which a client cannot recompute (it does not know the deployment's
* `fetchMaxOutputChars`); this is why fetch meta is carried, not derived from the
* header line (see the web-result-card Agent Note).
2026-07-30 17:04:09 +08:00
*/
export interface WebFetchMeta {
/** The final URL after allowed redirects. */
url : string
/** HTTP status code of the fetched response. */
statusCode : number
2026-07-30 20:01:41 +08:00
/** True when the provider, a source cut, or the output cap trimmed the content. */
2026-07-30 17:04:09 +08:00
truncated : boolean
}
/**
* Project a validated `web_fetch` output value into its replayable presentation
2026-07-30 20:01:41 +08:00
* meta ({@link WebFetchMeta} as opaque JSON). `truncated` is the effective
* truncation the model-facing text reflects (via {@link renderFetchOutput}), not
* the provider-only `WebFetchResult.truncated`, so the fetch card never disagrees
* with the returned text.
2026-07-30 17:04:09 +08:00
*
2026-07-30 20:01:41 +08:00
* @param value - the canonical `web_fetch` output value (the seam's result shape).
* @param maxOutputChars - the deployment's output cap, the same one
* {@link formatFetchOutput} applies to the render text.
* @returns the URL, status code, and effective truncation flag.
2026-07-30 17:04:09 +08:00
*/
2026-07-30 20:01:41 +08:00
export function fetchMetaFromValue ( value : WebFetchResult , maxOutputChars : number ) : JsonValue {
return { url : value.url , statusCode : value.statusCode , truncated : renderFetchOutput ( value , maxOutputChars ) . truncated }
2026-07-30 17:04:09 +08:00
}
/**
* Narrow opaque live or replayed result metadata to a {@link WebFetchMeta}.
* Malformed metadata returns `undefined` so presentation can fall back to the
* generic card instead of throwing during replay.
*
* @param meta - result metadata.
* @returns the validated fetch meta, or `undefined` for absent or malformed data.
*/
export function fetchMetaFromResult ( meta : unknown ) : WebFetchMeta | undefined {
if ( typeof meta !== 'object' || meta === null || Array . isArray ( meta ) ) return undefined
const { url , statusCode , truncated } = meta as Record < string , unknown >
if ( typeof url !== 'string' || typeof statusCode !== 'number' || typeof truncated !== 'boolean' ) return undefined
return { url , statusCode , truncated }
}
/**
* Completed-call presentation: a `web` fetch card carrying the retrieval summary
2026-07-30 20:01:41 +08:00
* from `meta`. It sets no `content` copy — a UI without the `web` capability
* falls back to the raw `tool/result` content, the already-markdown body (see the
* web-result-card Agent Note).
2026-07-30 17:04:09 +08:00
*
2026-07-30 20:01:41 +08:00
* @param args - the raw tool arguments; `url` becomes the result-state title so a
* window-truncated replay that dropped the call head still has one.
2026-07-30 17:04:09 +08:00
* @param result - the final model-facing tool result; `meta` carries the summary.
* @returns the fetch result view, or `undefined` (generic card) on failure or
* malformed meta.
*/
2026-07-30 20:01:41 +08:00
export function presentFetchResult ( args : { url : string } , result : ToolResult ) : WebFetchResultView | undefined {
2026-07-30 17:04:09 +08:00
if ( result . isError ) return undefined
const meta = fetchMetaFromResult ( result . meta )
if ( meta === undefined ) return undefined
return {
card : 'web' ,
kind : 'fetch' ,
2026-07-30 20:01:41 +08:00
title : args.url ,
2026-07-30 17:04:09 +08:00
url : meta.url ,
statusCode : meta.statusCode ,
truncated : meta.truncated ,
}
}
2026-07-06 22:09:30 +08:00
/**
* Register the `web_fetch` tool and its system-prompt guidance.
*
* @param ctx - context whose `tools` and `systemPrompt` registries receive the
* registrations; both are effect-scoped and unregister on plugin dispose.
2026-07-08 14:40:14 +08:00
* @param timeoutMs - the cooperative tool-call budget (ms) attached as the tool's
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-timeout-policy` to enforce.
2026-07-27 12:41:36 +08:00
* @param maxOutputChars - cap on the complete rendered tool output (see
2026-07-27 16:40:02 +08:00
* {@link formatFetchOutput}) and on source characters converted synchronously.
2026-07-06 22:09:30 +08:00
*/
2026-07-27 12:41:36 +08:00
export function applyWebFetchTool ( ctx : Context , timeoutMs : number , maxOutputChars : number ) : void {
2026-06-25 15:04:12 +08:00
ctx . systemPrompt . section ( {
name : 'tool:web_fetch' ,
order : 111 ,
text : 'Use the web_fetch tool to retrieve the content of a specific HTTP(S) URL (for example a result from web_search). It returns the page content decoded to text. Cite the URL as a markdown link when you use its content.' ,
} )
ctx . tools . register ( defineTool ( {
name : 'web_fetch' ,
description : 'Fetch the content of a specific HTTP(S) URL and return it decoded to text.' ,
parameters : {
url : { type : 'string' , required : true , description : 'The HTTP(S) URL to fetch.' } ,
} ,
2026-07-21 03:08:35 +08:00
output : {
schema : {
type : 'object' ,
additionalProperties : false ,
properties : {
url : { type : 'string' , required : true } ,
statusCode : { type : 'integer' , required : true } ,
body : {
required : true ,
oneOf : [
{
type : 'object' ,
additionalProperties : false ,
properties : {
kind : { type : 'string' , required : true , const : 'html' } ,
content : { type : 'string' , required : true } ,
} ,
} ,
{
type : 'object' ,
additionalProperties : false ,
properties : {
kind : { type : 'string' , required : true , const : 'text' } ,
content : { type : 'string' , required : true } ,
} ,
} ,
] ,
} ,
truncated : { type : 'boolean' , required : true } ,
} ,
} ,
2026-07-27 12:41:36 +08:00
render : ( _args , value ) = > [ { type : 'text' , text : formatFetchOutput ( value , maxOutputChars ) } ] ,
2026-07-30 20:01:41 +08:00
presentationMeta : ( _args , value ) = > fetchMetaFromValue ( value , maxOutputChars ) ,
2026-07-21 03:08:35 +08:00
} ,
2026-07-08 14:40:14 +08:00
timeoutMs ,
2026-07-18 14:59:26 +08:00
// Provider reads do not mutate parent-agent state.
2026-07-13 11:02:21 +08:00
isConcurrencySafe : ( ) = > true ,
2026-07-21 03:08:35 +08:00
async execute ( args , exec ) {
2026-06-25 15:04:12 +08:00
const input = parseFetchArgs ( args )
const result = await ctx . web . fetch (
2026-07-08 10:06:07 +08:00
{ url : input.url } ,
2026-07-14 04:17:38 +08:00
exec . signal ,
2026-06-25 15:04:12 +08:00
)
2026-07-21 03:08:35 +08:00
return {
url : result.url ,
statusCode : result.statusCode ,
body : { kind : result.body.kind , content : result.body.content } ,
truncated : result.truncated ,
}
2026-06-25 15:04:12 +08:00
} ,
presentCall : presentFetchCall ,
2026-07-30 20:01:41 +08:00
presentResult : ( args , result ) = > presentFetchResult ( args , result ) ,
2026-06-25 15:04:12 +08:00
} ) )
}