/** * Fixed marker that opens a session-context block sent as a normal `chat.send` user * turn. Any producer (e.g. the web/mobile UI when a user taps "reply" on a Senpi * notification) can seed context into a chat by wrapping the machine-readable context * between this line and {@link SENPI_SESSION_CONTEXT_END}, then appending the * human-readable prose after END. The runtime's seed-turn detector matches this literal * byte-for-byte (case-sensitive substring), so every producer and this constant MUST * agree on the exact text — do not reformat, re-space, or change the run of `-` here * without changing every producer in lockstep. */ export declare const SENPI_SESSION_CONTEXT_BEGIN = "-----SESSION-CONTEXT-BEGIN-----"; /** * Fixed marker that closes a session-context block (see * {@link SENPI_SESSION_CONTEXT_BEGIN}); the human-readable prose follows this line. * Matched byte-for-byte by the runtime detector, so it is a shared contract with every * producer — the literal must stay identical on both sides. */ export declare const SENPI_SESSION_CONTEXT_END = "-----SESSION-CONTEXT-END-----"; //# sourceMappingURL=session-context.d.ts.map