export Keys so packages can add their own local types

This commit is contained in:
Chris Wanstrath 2025-06-19 22:52:08 -07:00
parent c3f32120fc
commit 56a21a14e5

View File

@ -3,7 +3,7 @@ import { dirname, join } from "node:path"
import type { Reminder } from "@/reminders"
export type Conversation = { message: string; role: "user" | "assistant" }
type Keys = {
export interface Keys {
threads: Record<string, string> // threadId: previousResponseId
reminders: Reminder[]
}