diff options
author | eleanor-park <eleanor_park@brown.edu> | 2025-01-05 23:47:18 -0500 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2025-01-05 23:47:18 -0500 |
commit | 1d62d867621b293c41ff8488ca5a3bd6010723d5 (patch) | |
tree | 0abc9d9ae2869775cfcc294838c93577fbc0fef9 /src/client/documents/Documents.ts | |
parent | 6e7cb570f9bad527cd4772bb5c715dd588fb77df (diff) |
added AI image editor
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 785af3409..7f1387ff8 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -517,9 +517,9 @@ 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; + ai?: string; // to mark items as ai generated + ai_firefly_seed?: number; + ai_firefly_prompt?: string; } export const DocOptions = new DocumentOptions(); |