mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Implement comprehensive artifact tracking to record all file modifications made by the AI agent during conversations. Add artifact persistence, garbage collection, and UI updates with new "Discuss" button styling.
5 lines
147 B
TypeScript
5 lines
147 B
TypeScript
export interface IBinaryFile {
|
|
base64: string | undefined;
|
|
getStoragePath(): string | undefined;
|
|
setStoragePath(path: string): void;
|
|
}
|