7 lines
300 B
TypeScript
7 lines
300 B
TypeScript
import type { PromiseMethodName } from "../interpreter/model.js"
|
|
|
|
export const promiseStatics = new Set<PromiseMethodName>(["all", "allSettled", "race", "any", "resolve", "reject"])
|
|
|
|
/** Maximum number of eagerly forked tool calls that may run concurrently. */
|
|
export const TOOL_CALL_CONCURRENCY = 8
|