mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import { type ConvoStyles } from "components/system/Taskbar/AI/types";
|
|
|
|
export const DEFAULT_CONVO_STYLE: ConvoStyles = "balanced";
|
|
|
|
export const AI_WORKER = (): Worker =>
|
|
new Worker(
|
|
new URL("components/system/Taskbar/AI/ai.worker", import.meta.url),
|
|
{ name: "AI" }
|
|
);
|