Tela SDK for JavaScript
    Preparing search index...

    Interface UpdateAgentModelParams

    Parameters for updating an agent's model — mirrors the agent-sdk UpdateAgentModelRequest, with agentId in place of repository.

    interface UpdateAgentModelParams {
        agentId: string;
        commitMessage?: string;
        model: string;
    }
    Index

    Properties

    agentId: string

    The Tela agent id, resolved to the underlying repository.

    commitMessage?: string

    Optional commit message recorded for the change.

    model: string

    The model to set, as accepted by the agent-sdk model contract.