更新注释

This commit is contained in:
linyq 2025-07-07 18:57:35 +08:00
parent c9555f253d
commit 6e0d7f6971
16 changed files with 18 additions and 18 deletions

View File

@ -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__ = [

View File

@ -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) # 标签

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : __init__.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 纪录片解说提示词模块
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : frame_analysis.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 纪录片视频帧分析提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : narration_generation.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 纪录片解说文案生成提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : exceptions.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 提示词管理模块异常定义
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : manager.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 提示词管理器
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : registry.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 提示词注册机制
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : __init__.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧混剪提示词模块
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : plot_extraction.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧爆点提取提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : subtitle_analysis.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧字幕分析提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : __init__.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧解说提示词模块
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : plot_analysis.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧剧情分析提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : script_generation.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 短剧解说脚本生成提示词
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : template.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 模板渲染引擎
"""

View File

@ -4,7 +4,7 @@
"""
@Project: NarratoAI
@File : validators.py
@Author : AI Assistant
@Author : viccy同学
@Date : 2025/1/7
@Description: 提示词输出验证器
"""