Tela SDK for JavaScript
    Preparing search index...

    Interface AgentRecord

    An agent record as returned by GET /agent and GET /agent/:id.

    Carries the organizationName/repository the agent-sdk addresses agents by; the wrapper resolves an agentId to these before delegating an execution.

    interface AgentRecord {
        allowedCredentials: string[] | null;
        createdAt: string;
        createdBy: string;
        description: string | null;
        id: string;
        inputSchema: AgentInputVariable[];
        isFavorite: boolean | null;
        isMultiturn: boolean | null;
        organizationName: string;
        projectId: string;
        publishedAt: string | null;
        publishedId: string | null;
        repository: string;
        title: string;
        updatedAt: string;
        updatedBy: string | null;
        workspaceId: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    allowedCredentials: string[] | null
    createdAt: string
    createdBy: string
    description: string | null
    id: string
    inputSchema: AgentInputVariable[]
    isFavorite: boolean | null
    isMultiturn: boolean | null
    organizationName: string
    projectId: string
    publishedAt: string | null
    publishedId: string | null
    repository: string
    title: string
    updatedAt: string
    updatedBy: string | null
    workspaceId: string