重构模型平台前后端并移除Redis依赖

This commit is contained in:
Winnie
2026-07-30 19:03:00 +08:00
commit c74b2abb48
172 changed files with 40825 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { Route } from "./+types/platform";
import ModelPlatformApp from "../features/platform/ModelPlatformApp";
export function meta({}: Route.MetaArgs) {
return [
{ title: "模型实验开发平台" },
{ name: "description", content: "模型实验、脚本版本与 DAG 调度平台" },
];
}
export default function PlatformRoute() {
return <ModelPlatformApp />;
}