studio-lumiere-cli 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/constants.d.ts +1 -63
- package/dist/config/constants.js +3 -1004
- package/dist/config/constants.js.map +1 -1
- package/dist/pipelines/generateImages.js +5 -3
- package/dist/pipelines/generateImages.js.map +1 -1
- package/dist/storage/files.js +4 -1
- package/dist/storage/files.js.map +1 -1
- package/dist/studio/constants.d.ts +64 -0
- package/dist/studio/constants.js +1018 -0
- package/dist/studio/constants.js.map +1 -0
- package/dist/studio/promptBuilder.d.ts +4 -0
- package/{src/prompt/buildPrompt.ts → dist/studio/promptBuilder.js} +236 -291
- package/dist/studio/promptBuilder.js.map +1 -0
- package/dist/studio/types.d.ts +155 -0
- package/dist/studio/types.js +2 -0
- package/dist/studio/types.js.map +1 -0
- package/dist/types.d.ts +2 -49
- package/package.json +9 -3
- package/scripts/sync-studio.mjs +16 -0
- package/.agents/skills/generate-images/SKILL.md +0 -121
- package/.env.example +0 -2
- package/AGENTS.md +0 -66
- package/examples/generate.d.ts +0 -1
- package/examples/generate.js +0 -28
- package/examples/generate.js.map +0 -1
- package/examples/generate.ts +0 -30
- package/examples/muse.d.ts +0 -1
- package/examples/muse.js +0 -18
- package/examples/muse.js.map +0 -1
- package/examples/muse.ts +0 -20
- package/examples/video.d.ts +0 -1
- package/examples/video.js +0 -18
- package/examples/video.js.map +0 -1
- package/examples/video.ts +0 -20
- package/logo-round.png +0 -0
- package/logo.jpeg +0 -0
- package/skills/studio-lumiere-cli/SKILL.md +0 -212
- package/skills/studio-lumiere-cli/agents/openai.yaml +0 -4
- package/src/cli.ts +0 -259
- package/src/clients/geminiClient.ts +0 -168
- package/src/config/constants.ts +0 -1105
- package/src/config/options.ts +0 -15
- package/src/config/templates.ts +0 -4
- package/src/config/tiredGirl.ts +0 -11
- package/src/image/annotate.ts +0 -139
- package/src/image/grid.ts +0 -58
- package/src/index.ts +0 -27
- package/src/pipelines/createMuse.ts +0 -76
- package/src/pipelines/generateImages.ts +0 -203
- package/src/pipelines/generateTiredGirl.ts +0 -86
- package/src/pipelines/generateVideo.ts +0 -36
- package/src/pipelines/refineImage.ts +0 -36
- package/src/pipelines/resolve.ts +0 -88
- package/src/pipelines/upscaleImage.ts +0 -30
- package/src/prompt/tiredGirlPrompt.ts +0 -35
- package/src/storage/files.ts +0 -44
- package/src/storage/museStore.ts +0 -31
- package/src/types.ts +0 -198
- package/tsconfig.json +0 -15
|
@@ -1,63 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const DEFAULT_IMAGE_COUNT = 4;
|
|
3
|
-
export declare const UPSCALE_CREDIT_COST = 5;
|
|
4
|
-
export declare const REFINE_CREDIT_COST = 5;
|
|
5
|
-
export declare const GENERATE_CREDIT_COST = 5;
|
|
6
|
-
export declare const VIDEO_GENERATION_CREDIT_COST = 20;
|
|
7
|
-
export declare const VIDEO_ENABLED_TEMPLATES: readonly ["hand_model", "neck_model", "ear_model", "flatlay_creative", "floating_minimal", "half_body_muse"];
|
|
8
|
-
export type VideoEnabledTemplate = typeof VIDEO_ENABLED_TEMPLATES[number];
|
|
9
|
-
export declare const isVideoEnabledTemplate: (templateId: string) => boolean;
|
|
10
|
-
export declare const MUSE_ENABLED_TEMPLATES: readonly ["half_body_muse"];
|
|
11
|
-
export type MuseEnabledTemplate = typeof MUSE_ENABLED_TEMPLATES[number];
|
|
12
|
-
export declare const MUSE_GENERATION_CREDIT_COST = 5;
|
|
13
|
-
export declare const MUSE_BATCH_SIZE = 3;
|
|
14
|
-
export declare const MUSE_BATCH_CREDIT_COST: number;
|
|
15
|
-
export declare const REQUIRED_MUSE_VARIATIONS = 3;
|
|
16
|
-
export declare const MAX_MUSES_PER_USER = 3;
|
|
17
|
-
export declare const isMuseEnabledTemplate: (templateId: string) => boolean;
|
|
18
|
-
export declare const TEMPLATES: Template[];
|
|
19
|
-
export declare const SKIN_TONES: Option[];
|
|
20
|
-
export declare const ETHNICITY_REGIONS: Record<string, string[]>;
|
|
21
|
-
export declare const ETHNICITIES: Option[];
|
|
22
|
-
export declare const HAIR_COLORS: Option[];
|
|
23
|
-
export declare const BACKGROUNDS: Option[];
|
|
24
|
-
export declare const LUXURY_INTERIOR_POOL: string[];
|
|
25
|
-
export declare const getRandomLuxuryInterior: () => string;
|
|
26
|
-
export declare const BACKGROUND_TYPES: Option[];
|
|
27
|
-
export declare const VIBES: Option[];
|
|
28
|
-
export interface OccasionTheme {
|
|
29
|
-
id: string;
|
|
30
|
-
name: string;
|
|
31
|
-
icon: string;
|
|
32
|
-
description: string;
|
|
33
|
-
autoConfig: {
|
|
34
|
-
vibe: string;
|
|
35
|
-
background: string;
|
|
36
|
-
backgroundType: string;
|
|
37
|
-
};
|
|
38
|
-
promptDetails?: {
|
|
39
|
-
setting: string;
|
|
40
|
-
atmosphere: string;
|
|
41
|
-
colorPalette: string;
|
|
42
|
-
culturalElements: string;
|
|
43
|
-
styling: string;
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
export declare const OCCASIONS: OccasionTheme[];
|
|
47
|
-
export declare const GENERATION_STYLE_POOL: string[];
|
|
48
|
-
export declare const HAND_MODEL_STYLE_POOL: string[];
|
|
49
|
-
export declare const EAR_MODEL_STYLE_POOL: string[];
|
|
50
|
-
export declare const FLATLAY_STYLE_POOL: string[];
|
|
51
|
-
export declare const FLOATING_STYLE_POOL: string[];
|
|
52
|
-
export declare const ROMANCE_STYLE_POOL: string[];
|
|
53
|
-
export declare const MUSEUM_STYLE_POOL: string[];
|
|
54
|
-
export declare const ROMANTIC_MOOD_STYLE_POOL: string[];
|
|
55
|
-
export declare const getStylePoolForTemplate: (templateId: string | null) => string[];
|
|
56
|
-
export declare const HAND_MODEL_VIDEO_PROMPTS: string[];
|
|
57
|
-
export declare const NECK_MODEL_VIDEO_PROMPTS: string[];
|
|
58
|
-
export declare const EAR_MODEL_VIDEO_PROMPTS: string[];
|
|
59
|
-
export declare const FLATLAY_VIDEO_PROMPTS: string[];
|
|
60
|
-
export declare const FLOATING_VIDEO_PROMPTS: string[];
|
|
61
|
-
export declare const VIDEO_MOTION_PROMPT_POOL: string[];
|
|
62
|
-
export declare const getVideoPromptPool: (templateId: string) => string[];
|
|
63
|
-
export declare const RESOLUTIONS: Resolution[];
|
|
1
|
+
export * from '../studio/constants.js';
|