diff options
author | eleanor-park <eleanor_park@brown.edu> | 2024-12-30 23:35:24 -0500 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2024-12-30 23:35:24 -0500 |
commit | 0eff48b757ca81860a883d25e147b8a869e5fe00 (patch) | |
tree | 11e8333c424bc72b08357a38d05ab668423d16d1 /src/client/documents/Documents.ts | |
parent | 7e5f6fdc205eae1b0ab76390644257a82bf6ebf1 (diff) |
created image regeneration with dialogue
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index c51c1645d..785af3409 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -516,6 +516,10 @@ export class DocumentOptions { card_sort?: STRt = new StrInfo('way cards are sorted in deck view'); card_sort_isDesc?: BOOLt = new BoolInfo('whether the cards are sorted ascending or descending'); + + ai_generated?: boolean; // to mark items as ai generated + firefly_seed?: number; + firefly_prompt?: string; } export const DocOptions = new DocumentOptions(); |