更新注释

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

View File

@ -4,7 +4,7 @@
""" """
@Project: NarratoAI @Project: NarratoAI
@File : __init__.py @File : __init__.py
@Author : AI Assistant @Author : viccy同学
@Date : 2025/1/7 @Date : 2025/1/7
@Description: 统一提示词管理模块 @Description: 统一提示词管理模块
""" """
@ -23,7 +23,7 @@ from .exceptions import (
# 版本信息 # 版本信息
__version__ = "1.0.0" __version__ = "1.0.0"
__author__ = "AI Assistant" __author__ = "viccy同学"
# 导出的公共接口 # 导出的公共接口
__all__ = [ __all__ = [

View File

@ -4,7 +4,7 @@
""" """
@Project: NarratoAI @Project: NarratoAI
@File : base.py @File : base.py
@Author : AI Assistant @Author : viccy同学
@Date : 2025/1/7 @Date : 2025/1/7
@Description: 提示词基础类定义 @Description: 提示词基础类定义
""" """
@ -40,7 +40,7 @@ class PromptMetadata:
description: str # 描述 description: str # 描述
model_type: ModelType # 适用的模型类型 model_type: ModelType # 适用的模型类型
output_format: OutputFormat # 输出格式 output_format: OutputFormat # 输出格式
author: str = "AI Assistant" # 作者 author: str = "viccy同学" # 作者
created_at: datetime = field(default_factory=datetime.now) # 创建时间 created_at: datetime = field(default_factory=datetime.now) # 创建时间
updated_at: datetime = field(default_factory=datetime.now) # 更新时间 updated_at: datetime = field(default_factory=datetime.now) # 更新时间
tags: List[str] = field(default_factory=list) # 标签 tags: List[str] = field(default_factory=list) # 标签

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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