nexus-agents - v2.80.0
    Preparing search index...

    Interface IAgenticAdapter

    The agentic-adapter contract. Single method; all the variability lives in RunAgentArgs.

    interface IAgenticAdapter {
        providerId: string;
        modelId: string;
        adapterStrategy: string;
        runAgent(args: RunAgentArgs): Promise<Result<AgentRunResult, AgentError>>;
    }

    Implemented by

    Index

    Properties

    providerId: string
    modelId: string
    adapterStrategy: string

    Methods