极速成片页面和提炼提示词

This commit is contained in:
Azmat@qq.com
2026-08-24 15:52:05 +08:00
parent 2f5b7304b0
commit 00fc454db7
29 changed files with 1424 additions and 483 deletions
+3
View File
@@ -29,6 +29,7 @@ import {
AuthScreen,
Dashboard,
FreeCreatePage,
QuickCreatePage,
VideoRemixPage,
ImageWorkbenchPage,
LibraryPage,
@@ -1046,6 +1047,8 @@ export function App() {
return <AssetFactoryPage navigate={navigate} />;
case "freeCreate":
return <FreeCreatePage modelConfigs={modelConfigs} onNotify={(type, text) => setNotice({ type, text })} onTaskSettled={refreshFreeCreateShell} onBack={() => goBack("projects")} />;
case "quickCreate":
return <QuickCreatePage onBack={() => goBack("projects")} />;
case "videoRemix":
return <VideoRemixPage textModels={modelConfigs.filter((m) => m.capability === "text" && m.status === "active")} onNotify={(type, text) => setNotice({ type, text })} onBack={() => goBack("projects")} navigate={navigate} />;
case "imageOptimize":