AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundUpload

    Uploaded playground file exposed through the playground static file channel.

    The upload API stores raw user attachments outside the conversation payload and returns a URL that can be read again by facade metadata workers, DB ontology chunk readers, replay sessions, and Agentica history transforms.

    Samchon

    interface IAutoBePlaygroundUpload {
        byteLength: number;
        contentType: string;
        name: string;
        url: string & Format<"iri">;
    }
    Index

    Properties

    byteLength: number

    Stored byte length of the uploaded object.

    contentType: string

    MIME type recorded at upload time.

    name: string

    Original filename supplied by the browser.

    url: string & Format<"iri">

    Static URL from which the uploaded bytes can be read.