Add autoChatWidth and customChatWidth to syncable parameters

This commit is contained in:
Imad Saddik 2026-01-03 09:21:55 +01:00
parent 21b35be366
commit eb997f61f9
1 changed files with 12 additions and 0 deletions

View File

@ -103,6 +103,18 @@ export const SYNCABLE_PARAMETERS: SyncableParameter[] = [
serverKey: 'enableContinueGeneration',
type: 'boolean',
canSync: true
},
{
key: 'autoChatWidth',
serverKey: 'autoChatWidth',
type: 'boolean',
canSync: true
},
{
key: 'customChatWidth',
serverKey: 'customChatWidth',
type: 'string',
canSync: true
}
];