diff --git a/app/services/prompts/__init__.py b/app/services/prompts/__init__.py index 8477710..3338673 100644 --- a/app/services/prompts/__init__.py +++ b/app/services/prompts/__init__.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : __init__.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 统一提示词管理模块 """ @@ -23,7 +23,7 @@ from .exceptions import ( # 版本信息 __version__ = "1.0.0" -__author__ = "AI Assistant" +__author__ = "viccy同学" # 导出的公共接口 __all__ = [ diff --git a/app/services/prompts/base.py b/app/services/prompts/base.py index d1ed1fe..d19a5a0 100644 --- a/app/services/prompts/base.py +++ b/app/services/prompts/base.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : base.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 提示词基础类定义 """ @@ -40,7 +40,7 @@ class PromptMetadata: description: str # 描述 model_type: ModelType # 适用的模型类型 output_format: OutputFormat # 输出格式 - author: str = "AI Assistant" # 作者 + author: str = "viccy同学" # 作者 created_at: datetime = field(default_factory=datetime.now) # 创建时间 updated_at: datetime = field(default_factory=datetime.now) # 更新时间 tags: List[str] = field(default_factory=list) # 标签 diff --git a/app/services/prompts/documentary/__init__.py b/app/services/prompts/documentary/__init__.py index 3dcb63a..0c5455c 100644 --- a/app/services/prompts/documentary/__init__.py +++ b/app/services/prompts/documentary/__init__.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : __init__.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 纪录片解说提示词模块 """ diff --git a/app/services/prompts/documentary/frame_analysis.py b/app/services/prompts/documentary/frame_analysis.py index 44f0eac..ad69986 100644 --- a/app/services/prompts/documentary/frame_analysis.py +++ b/app/services/prompts/documentary/frame_analysis.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : frame_analysis.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 纪录片视频帧分析提示词 """ diff --git a/app/services/prompts/documentary/narration_generation.py b/app/services/prompts/documentary/narration_generation.py index ab9e1c6..f60af4b 100644 --- a/app/services/prompts/documentary/narration_generation.py +++ b/app/services/prompts/documentary/narration_generation.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : narration_generation.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 纪录片解说文案生成提示词 """ diff --git a/app/services/prompts/exceptions.py b/app/services/prompts/exceptions.py index 217c272..1c6a361 100644 --- a/app/services/prompts/exceptions.py +++ b/app/services/prompts/exceptions.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : exceptions.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 提示词管理模块异常定义 """ diff --git a/app/services/prompts/manager.py b/app/services/prompts/manager.py index b396ac2..5dd65f2 100644 --- a/app/services/prompts/manager.py +++ b/app/services/prompts/manager.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : manager.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 提示词管理器 """ diff --git a/app/services/prompts/registry.py b/app/services/prompts/registry.py index f30bf9c..2720522 100644 --- a/app/services/prompts/registry.py +++ b/app/services/prompts/registry.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : registry.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 提示词注册机制 """ diff --git a/app/services/prompts/short_drama_editing/__init__.py b/app/services/prompts/short_drama_editing/__init__.py index ce155b6..0f3bd04 100644 --- a/app/services/prompts/short_drama_editing/__init__.py +++ b/app/services/prompts/short_drama_editing/__init__.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : __init__.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧混剪提示词模块 """ diff --git a/app/services/prompts/short_drama_editing/plot_extraction.py b/app/services/prompts/short_drama_editing/plot_extraction.py index 9802fff..49c2ab3 100644 --- a/app/services/prompts/short_drama_editing/plot_extraction.py +++ b/app/services/prompts/short_drama_editing/plot_extraction.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : plot_extraction.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧爆点提取提示词 """ diff --git a/app/services/prompts/short_drama_editing/subtitle_analysis.py b/app/services/prompts/short_drama_editing/subtitle_analysis.py index 792ca23..9237e74 100644 --- a/app/services/prompts/short_drama_editing/subtitle_analysis.py +++ b/app/services/prompts/short_drama_editing/subtitle_analysis.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : subtitle_analysis.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧字幕分析提示词 """ diff --git a/app/services/prompts/short_drama_narration/__init__.py b/app/services/prompts/short_drama_narration/__init__.py index 49aafbf..dfa0171 100644 --- a/app/services/prompts/short_drama_narration/__init__.py +++ b/app/services/prompts/short_drama_narration/__init__.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : __init__.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧解说提示词模块 """ diff --git a/app/services/prompts/short_drama_narration/plot_analysis.py b/app/services/prompts/short_drama_narration/plot_analysis.py index 01663d1..6431754 100644 --- a/app/services/prompts/short_drama_narration/plot_analysis.py +++ b/app/services/prompts/short_drama_narration/plot_analysis.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : plot_analysis.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧剧情分析提示词 """ diff --git a/app/services/prompts/short_drama_narration/script_generation.py b/app/services/prompts/short_drama_narration/script_generation.py index 6e8189b..9fd105f 100644 --- a/app/services/prompts/short_drama_narration/script_generation.py +++ b/app/services/prompts/short_drama_narration/script_generation.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : script_generation.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 短剧解说脚本生成提示词 """ diff --git a/app/services/prompts/template.py b/app/services/prompts/template.py index 1445318..bfebcb5 100644 --- a/app/services/prompts/template.py +++ b/app/services/prompts/template.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : template.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 模板渲染引擎 """ diff --git a/app/services/prompts/validators.py b/app/services/prompts/validators.py index d8a1651..e991e2b 100644 --- a/app/services/prompts/validators.py +++ b/app/services/prompts/validators.py @@ -4,7 +4,7 @@ """ @Project: NarratoAI @File : validators.py -@Author : AI Assistant +@Author : viccy同学 @Date : 2025/1/7 @Description: 提示词输出验证器 """