fix: md table render

This commit is contained in:
Han Xiao 2025-03-20 14:24:39 +08:00
parent 25606299ba
commit efa79274c1

View File

@ -546,6 +546,15 @@ export async function processURLs(
// Only add valid URLs to visitedURLs list
if (url) {
visitedURLs.push(url);
// acknowledge the visit action is done for this URL
context.actionTracker.trackAction({
thisStep: {
action: 'visit',
think: '',
URLTargets: [url]
} as VisitAction
})
}
}
})