ART Framework API Docs
    Preparing search index...

    Interface IObservationRepository

    Repository for managing Observations.

    interface IObservationRepository {
        addObservation(observation: Observation): Promise<void>;
        getObservations(
            threadId: string,
            filter?: ObservationFilter,
        ): Promise<Observation[]>;
    }
    Index

    Methods