Tela SDK for JavaScript
    Preparing search index...

    Interface AgentUploadEntry

    A TelaFile to upload to the vault before the run, with optional metadata.

    interface AgentUploadEntry {
        file: TelaFile;
        filename?: string;
        metadata?: string;
        type?: "file";
    }
    Index

    Properties

    file: TelaFile

    The file to upload; its vault reference is derived automatically.

    filename?: string

    Overrides the uploaded filename; defaults to the TelaFile's name.

    metadata?: string

    Optional metadata string forwarded to the agent (≤16,384 chars).

    type?: "file"