Heroku LangChain - v0.2.1
    Preparing search index...

    Interface HerokuMiaAgentCallOptions

    Interface for the options that can be passed at runtime to HerokuMiaAgent methods. Extends BaseChatModelCallOptions and includes Heroku-specific agent parameters. Based on SPECS.md Table: HerokuMiaAgentCallOptions Constructor Parameters (Section 3.2.2)

    interface HerokuMiaAgentCallOptions {
        metadata?: Record<string, any>;
        sessionId?: string;
        additionalKwargs?: Record<string, any>;
    }

    Hierarchy

    • BaseChatModelCallOptions
      • HerokuMiaAgentCallOptions
    Index

    Properties

    metadata?: Record<string, any>

    Metadata for this call and any sub-calls (eg. a Chain calling an LLM). Keys should be strings, values should be JSON-serializable.

    sessionId?: string
    additionalKwargs?: Record<string, any>