LocalLm types documentation
    Preparing search index...

    Interface IngestionStats

    Represents the statistics of an inference prompt ingestion time.

    IngestionStats

    const ingestionStats: IngestionStats = {
    ingestionTime: 150,
    ingestionTimeSeconds: 0.15
    };
    interface IngestionStats {
        ingestionTime: number;
        ingestionTimeSeconds: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    ingestionTime: number

    The time taken to ingest the input data in milliseconds.

    ingestionTimeSeconds: number

    The time taken to ingest the input data in seconds.