mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 06:20:55 +00:00
15 lines
510 B
TypeScript
15 lines
510 B
TypeScript
/** Shared reply-history helpers for plugins that keep short per-thread context windows. */
|
|
export type { HistoryEntry } from "../auto-reply/reply/history.js";
|
|
export {
|
|
DEFAULT_GROUP_HISTORY_LIMIT,
|
|
buildHistoryContext,
|
|
buildHistoryContextFromEntries,
|
|
buildHistoryContextFromMap,
|
|
buildPendingHistoryContextFromMap,
|
|
clearHistoryEntries,
|
|
clearHistoryEntriesIfEnabled,
|
|
evictOldHistoryKeys,
|
|
recordPendingHistoryEntry,
|
|
recordPendingHistoryEntryIfEnabled,
|
|
} from "../auto-reply/reply/history.js";
|