범용 프롬프트 적용
parent
26ae588285
commit
8a39a34630
|
|
@ -483,7 +483,7 @@ const GenerationFlow: React.FC<GenerationFlowProps> = ({
|
|||
businessInfo={currentBusinessInfo}
|
||||
imageTaskId={imageTaskId}
|
||||
mId={analysisData?.m_id ?? 0}
|
||||
bizType={analysisData?.biz_type ?? 'place'}
|
||||
industry={analysisData?.industry ?? ''}
|
||||
videoGenerationStatus={videoGenerationStatus}
|
||||
videoGenerationProgress={videoGenerationProgress}
|
||||
onGoToPayment={handleGoToPayment}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ interface SoundStudioContentProps {
|
|||
businessInfo?: BusinessInfo;
|
||||
imageTaskId: string | null;
|
||||
mId: number;
|
||||
bizType?: string;
|
||||
industry?: string;
|
||||
onStatusChange?: (status: string) => void;
|
||||
videoGenerationStatus?: 'idle' | 'generating' | 'complete' | 'error';
|
||||
videoGenerationProgress?: number;
|
||||
|
|
@ -80,7 +80,7 @@ const SoundStudioContent: React.FC<SoundStudioContentProps> = ({
|
|||
businessInfo,
|
||||
imageTaskId,
|
||||
mId,
|
||||
bizType = 'place',
|
||||
industry = '',
|
||||
onStatusChange,
|
||||
videoGenerationStatus = 'idle',
|
||||
videoGenerationProgress = 0,
|
||||
|
|
@ -377,7 +377,7 @@ const SoundStudioContent: React.FC<SoundStudioContentProps> = ({
|
|||
m_id: mId,
|
||||
region: businessInfo.region,
|
||||
task_id: imageTaskId,
|
||||
biz_type: bizType,
|
||||
industry,
|
||||
orientation,
|
||||
...(isInstrumental && { instrumental: true }),
|
||||
});
|
||||
|
|
|
|||
|
|
@ -36,12 +36,12 @@ export interface CrawlingResponse {
|
|||
image_list: string[];
|
||||
image_count: number;
|
||||
m_id: number;
|
||||
biz_type: string;
|
||||
industry: string;
|
||||
processed_info: {
|
||||
customer_name: string;
|
||||
region: string;
|
||||
detail_region_info: string;
|
||||
biz_type: string;
|
||||
industry: string;
|
||||
};
|
||||
marketing_analysis: MarketingAnalysis;
|
||||
}
|
||||
|
|
@ -69,7 +69,7 @@ export interface LyricGenerateRequest {
|
|||
m_id: number;
|
||||
region: string;
|
||||
task_id: string;
|
||||
biz_type?: string;
|
||||
industry?: string;
|
||||
orientation?: 'vertical' | 'horizontal';
|
||||
instrumental?: boolean;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue