diff --git a/api/DTO/movie_start_dto.ts b/api/DTO/movie_start_dto.ts index 89d1c55..a72e4ff 100644 --- a/api/DTO/movie_start_dto.ts +++ b/api/DTO/movie_start_dto.ts @@ -210,33 +210,33 @@ export interface CreateMovieProjectV3Request { language: string; /**模板id */ template_id: string; - /**故事角色 */ + /** 故事角色 */ storyRole: { - /**角色名 */ + /** 角色名 */ role_name: string; - /**角色描述 */ - role_description: { - name: string; - image_url: string; - character_analysis: Record; - }; - /**照片URL */ + /** 角色描述,ai分析出来,用于剧本生成 */ + role_description: string; + /** 用户提示,提示给用户需要输入什么内容 */ + user_tips: string; + /** 约束,可选,用于传给ai,让ai去拦截用户不符合约束的输入内容 */ + constraints: string; + /** 照片URL */ photo_url: string; - /**声音URL */ + /** 声音URL */ voice_url: string; }[]; - /** 可填写的变量字段 */ - fillable_content?: { - /** 字段名称 */ - field_name: string; - /** 字段类型 */ - field_type: string; - /** 字段值 */ - field_value?: string; - /** 字段描述 */ - field_description?: string; - /** 字段元数据 */ - field_meta?: Record; + /** 道具 */ + storyItem: { + /** 道具名 */ + item_name: string; + /** 道具描述,ai分析出来,用于剧本生成 */ + item_description: string; + /** 用户提示,提示给用户需要输入什么内容 */ + user_tips: string; + /** 约束,可选,用于传给ai,让ai去拦截用户不符合约束的输入内容 */ + constraints: string; + /** 道具照片URL */ + photo_url: string; }[]; } diff --git a/api/constants.ts b/api/constants.ts index 3035281..a2dd979 100644 --- a/api/constants.ts +++ b/api/constants.ts @@ -1,4 +1,4 @@ -// export const BASE_URL = process.env.NEXT_PUBLIC_BASE_URL -export const BASE_URL = 'https://77.smartvideo.py.qikongjian.com' +export const BASE_URL = process.env.NEXT_PUBLIC_BASE_URL +// export const BASE_URL = 'https://77.smartvideo.py.qikongjian.com' // export const BASE_URL ='http://192.168.120.5:8000' // diff --git a/app/layout.tsx b/app/layout.tsx index cd9ec8b..232e151 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -39,14 +39,25 @@ export default function RootLayout({ return ( - MovieFlow - Create Amazing Movies with AI - + MovieFlow - AI Film Studio + + +