MCPcopy Create free account
hub / github.com/MiniMax-AI/OpenRoom / AppInput

Interface AppInput

apps/webuiapps/src/lib/appGeneratorPlugin.ts:15–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13const LOG_PREFIX = '[appGenerator]';
14
15interface AppInput {
16 id: string;
17 name: string;
18 keywords?: string[];
19 format?: string;
20 tags: Array<{ name: string; type?: string; description?: string }>;
21 example: string;
22 resources: Record<string, string[]>;
23 scripts?: Array<{
24 name: string;
25 type: string;
26 findRegex: string;
27 replaceString: string;
28 }>;
29 imageTagPairs?: Array<{ tag: string; imgStyle: string }>;
30}
31
32interface LlmConfig {
33 apiKey?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected