Heroku LangChain.js - v0.4.2
    Preparing search index...

    Interface HerokuAgentCallOptions

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

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

    Hierarchy

    • BaseChatModelCallOptions
      • HerokuAgentCallOptions
    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>