feat(application-form-fill): 新增模板配置骨架
This commit is contained in:
31
review_agent/application_form_fill/constants.py
Normal file
31
review_agent/application_form_fill/constants.py
Normal file
@@ -0,0 +1,31 @@
|
||||
WORKFLOW_TYPE = "application_form_fill"
|
||||
|
||||
TEMPLATE_REGISTRATION_CERTIFICATE = "registration_certificate"
|
||||
TEMPLATE_CHANGE_REGISTRATION = "change_registration"
|
||||
TEMPLATE_ESSENTIAL_PRINCIPLES = "essential_principles"
|
||||
|
||||
DEFAULT_OUTPUT_TYPES = ["word", "excel", "json"]
|
||||
|
||||
FORM_FILL_TRIGGER_KEYWORDS = [
|
||||
"填注册证",
|
||||
"对应的表格",
|
||||
"生成申报模板",
|
||||
"安全和性能基本原则清单",
|
||||
"填到申报模板",
|
||||
"自动填表",
|
||||
"生成表格",
|
||||
]
|
||||
|
||||
FORM_FILL_NODE_DEFINITIONS = [
|
||||
("prepare", "准备资料", "form_fill"),
|
||||
("template_select", "选择模板", "form_fill"),
|
||||
("template_copy", "复制模板", "form_fill"),
|
||||
("field_extract", "抽取字段", "form_fill"),
|
||||
("conflict_merge", "冲突归并", "form_fill"),
|
||||
("word_fill", "填写 Word", "form_fill"),
|
||||
("pdf_convert", "转换 PDF", "form_fill"),
|
||||
("trace_export", "追溯清单", "form_fill"),
|
||||
("output_export", "输出下载", "form_fill"),
|
||||
("notify", "飞书通知", "form_fill"),
|
||||
("completed", "完成", "completed"),
|
||||
]
|
||||
Reference in New Issue
Block a user