Skip to main content

Function: createGroundingGuardExtensionPack()

createGroundingGuardExtensionPack(context): ExtensionPack

Defined in: packages/agentos/src/extensions/packs/grounding-guard/index.ts:313

AgentOS manifest factory function.

Conforms to the convention expected by the extension loader when resolving packs from manifests. Extracts options from the ExtensionPackContext and delegates to createGroundingGuardPack.

Parameters

context

ExtensionPackContext

Manifest context containing optional pack options, secret resolver, and shared service registry.

Returns

ExtensionPack

A fully-configured ExtensionPack.

Example

{
"packs": [
{
"module": "./grounding-guard",
"options": {
"contradictionAction": "block",
"maxUnverifiableRatio": 0.3
}
}
]
}