ISPO SDK
    Preparing search index...

    Interface PromptHistoryApi

    Markdown
    interface PromptHistoryApi {
        listSessions(
            args?: PromptSessionListArgs,
        ): Promise<PromptSessionListResult>;
        readSession(
            store: PromptHistoryStore,
            key: string,
        ): Promise<PromptSessionDetail>;
    }
    Index