mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-06-11 09:55:59 +00:00
b103d1a7f5
* feat(frontend): support static website demo mode * fix(frontend): render html artifact previews from blob content * chore(frontend): apply pre-commit formatting * fix(frontend): address static demo PR review comments * Update the release information of DeerFlow --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import type { User } from "./types";
|
|
|
|
export const STATIC_WEBSITE_USER: User = {
|
|
id: "static-website-user",
|
|
email: "static@example.local",
|
|
system_role: "admin",
|
|
needs_setup: false,
|
|
};
|