mimiq
    Preparing search index...

    Interface SimulatorInterface

    Interface for all simulator implementations. Simulators generate user actions based on the current UI state.

    interface SimulatorInterface {
        cleanup?(): Promise<void>;
        getMaxTurns(): number;
        getStartingPrompt(): string;
        nextTurn(snapshot: AffordanceSnapshot): Promise<SimulatorResult>;
    }

    Implemented by

    Index

    Methods