refactor(agents): privatize prompt error outcome (#107097)

This commit is contained in:
Peter Steinberger
2026-07-13 21:01:48 -07:00
committed by GitHub
parent 87b2b4eaab
commit ea33260491
@@ -17,7 +17,7 @@ type PromptErrorSessionLockController = Pick<
>;
type WithOwnedSessionWriteLock = <T>(operation: () => Promise<T> | T) => Promise<T>;
export type EmbeddedAttemptPromptErrorOutcome = {
type EmbeddedAttemptPromptErrorOutcome = {
promptFailure?: {
error: unknown;
source: "prompt";