chore(core): improve encapsulation and remove unused exports (#19556)

This commit is contained in:
Adam Weidman
2026-02-19 13:19:32 -07:00
committed by GitHub
parent 264c7aceaa
commit a468407098
10 changed files with 22 additions and 39 deletions

View File

@@ -21,7 +21,7 @@ export interface ToolCallContext {
/**
* AsyncLocalStorage instance for tool call context.
*/
export const toolCallContext = new AsyncLocalStorage<ToolCallContext>();
const toolCallContext = new AsyncLocalStorage<ToolCallContext>();
/**
* Runs a function within a tool call context.