mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-03 04:03:35 +00:00
* fix(agents): replace prose terminal classifiers Co-authored-by: fuller-stack-dev <263060202+fuller-stack-dev@users.noreply.github.com> * fix(agents): preserve terminal failure lifecycles * fix(agents): order parallel terminal summaries * fix(agents): preserve structured post-tool silence * fix(agents): preserve structured replay provenance --------- Co-authored-by: fuller-stack-dev <263060202+fuller-stack-dev@users.noreply.github.com>
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
// Focused public test contracts for native agent-runtime adapters.
|
|
|
|
export {
|
|
AUTH_PROFILE_RUNTIME_CONTRACT,
|
|
createAuthAliasManifestRegistry,
|
|
expectedForwardedAuthProfile,
|
|
} from "./test-helpers/agents/auth-profile-runtime-contract.js";
|
|
export { DELIVERY_NO_REPLY_RUNTIME_CONTRACT } from "./test-helpers/agents/delivery-no-reply-runtime-contract.js";
|
|
export {
|
|
createTerminalPresentationContractTool,
|
|
installCodexToolResultMiddleware,
|
|
installOpenClawOwnedToolHooks,
|
|
mediaToolResult,
|
|
resetOpenClawOwnedToolHooks,
|
|
textToolResult,
|
|
} from "./test-helpers/agents/openclaw-owned-tool-runtime-contract.js";
|
|
export {
|
|
createContractFallbackConfig,
|
|
createContractRunResult,
|
|
OUTCOME_FALLBACK_RUNTIME_CONTRACT,
|
|
} from "./test-helpers/agents/outcome-fallback-runtime-contract.js";
|
|
export {
|
|
CODEX_CONTRACT_PROVIDER_ID,
|
|
codexPromptOverlayContext,
|
|
GPT5_CONTRACT_MODEL_ID,
|
|
GPT5_PREFIXED_CONTRACT_MODEL_ID,
|
|
NON_GPT5_CONTRACT_MODEL_ID,
|
|
NON_OPENAI_CONTRACT_PROVIDER_ID,
|
|
OPENAI_CODEX_CONTRACT_PROVIDER_ID,
|
|
OPENAI_CONTRACT_PROVIDER_ID,
|
|
openAiPluginPersonalityConfig,
|
|
sharedGpt5PersonalityConfig,
|
|
} from "./test-helpers/agents/prompt-overlay-runtime-contract.js";
|
|
export {
|
|
createNativeOpenAICodexResponsesModel,
|
|
createNativeOpenAIResponsesModel,
|
|
createParameterFreeTool,
|
|
createPermissiveTool,
|
|
createProxyOpenAIResponsesModel,
|
|
createStrictCompatibleTool,
|
|
normalizedParameterFreeSchema,
|
|
} from "./test-helpers/agents/schema-normalization-runtime-contract.js";
|
|
export {
|
|
assistantHistoryMessage,
|
|
currentPromptHistoryMessage,
|
|
inlineDataUriOrphanLeaf,
|
|
mediaOnlyHistoryMessage,
|
|
QUEUED_USER_MESSAGE_MARKER,
|
|
structuredHistoryMessage,
|
|
structuredOrphanLeaf,
|
|
textOrphanLeaf,
|
|
} from "./test-helpers/agents/transcript-repair-runtime-contract.js";
|