UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

13 lines (12 loc) 797 B
import { type AgentReasoningDefinition, type AgentStaticModelDefinition, type DynamicSentinel, type DynamicSubagentDefinition } from "#public/index.js"; /** Options retained for source compatibility with the retired scaffold. */ export interface SelfModificationAgentOptions { readonly config?: unknown; readonly model?: AgentStaticModelDefinition; readonly reasoning?: AgentReasoningDefinition; } /** @deprecated Use the packaged `eve/self-modification` extension. */ export declare function defineSelfModificationAgent(_options?: SelfModificationAgentOptions): DynamicSentinel<DynamicSubagentDefinition | null>; /** @deprecated Use the packaged `eve/self-modification` extension. */ declare const _default: DynamicSentinel<DynamicSubagentDefinition | null>; export default _default;