Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/**
* Size cap for local files Desktop loads as data URLs (composer attach, image
* preview, …).
*
* Main owns the persisted value; the renderer mirrors it in Settings → Chat and
* clamps optimistically before sending. Both ends have to agree on the default
* and the bounds, so they live here rather than as two constants with a
* "keep these in sync" comment between them.
*
* The whole file is base64-buffered in main, so this is a memory guard, not a
* model limit. The ceiling is only a typo guard — values well below it can
* still OOM the app.
*/
export const DATA_URL_READ_DEFAULT_MAX_MB = 16
export const DATA_URL_READ_MIN_MAX_MB = 1
export const DATA_URL_READ_MAX_MAX_MB = 4096
export function clampDataUrlReadMaxMb(value: unknown): number {
const parsed = Number(value)
if (!Number.isFinite(parsed)) {
return DATA_URL_READ_DEFAULT_MAX_MB
}
return Math.min(DATA_URL_READ_MAX_MAX_MB, Math.max(DATA_URL_READ_MIN_MAX_MB, Math.round(parsed)))
}