Files
flynn/src/session/index.ts
T
William Valentin 9f81c01603 feat(session): persist model tier overrides per session
Store per-session config in SQLite and route /model and /reset through command fast-paths so channel sessions keep independent model selection across reconnects and restarts.
2026-02-13 01:04:26 -08:00

7 lines
389 B
TypeScript

export { SessionStore, parseDuration } from './store.js';
export { SessionManager, ManagedSession, type Session } from './manager.js';
export { SessionIndexer, tokenize } from './indexer.js';
export type { HistoryMetadata, HistoryIndexerConfig } from './indexer.js';
export { SessionSearch } from './search.js';
export type { HistorySearchResult, HistorySearchConfig } from './search.js';