中国招投标文档生成工具。支持招标文件、投标书、技术方案、商务报价等专业文档。符合中国招投标规范,支持政府采购、工程建设、IT/软件、医疗设备、教育装备等行业。招投标、标书、投标书。
生成符合中国招投标规范的专业文档。
本工具生成的文档仅供参考。
不同AI模型能力不同,文档质量可能有差异。
重要招投标文件请人工审核。
请确保符合当地招投标法规。
| 文档 | 说明 |
|---|---|
| 招标公告 | 项目简介、资质要求、时间安排 |
| 招标文件 |
| 文档 | 说明 |
|---|---|
| 投标书 | 投标函、报价单、资质证明 |
| 技术方案 |
用户:帮我写一份IT项目的投标书
智能体:生成投标书模板
用户:写一份政府招标文件
智能体:生成招标文件
用户:帮我写一份医疗设备的技术方案
智能体:生成技术方案
用户输入(项目信息/要求/素材)
↓
python
from docx import Document
from docx.shared import Pt, Cm, RGBColor
from docx.enum.text import WDALIGNPARAGRAPH
class BidGenerator:
def init(self):
self.templates = {
tender: self.tendertemplate,
bid: self.bidtemplate,
technical: self.technicaltemplate,
commercial: self.commercialtemplate
}
def generate(self, doctype, projectinfo, industry, output_path):
生成招投标文档
template = self.templates.get(doctype, self.bid_template)
doc = template(project_info, industry)
doc.save(output_path)
return output_path
def tendertemplate(self, project_info, industry):
招标文件模板
doc = Document()
# 标题
title = doc.addheading(f{projectinfo[name]}招标文件, 0)
title.alignment = WDALIGNPARAGRAPH.CENTER
# 项目概述
doc.add_heading(一、项目概述, level=1)
doc.addparagraph(f项目名称:{projectinfo.get(name, )})
doc.addparagraph(f项目编号:{projectinfo.get(id, )})
doc.addparagraph(f招标单位:{projectinfo.get(organization, )})
# 技术要求
doc.add_heading(二、技术要求, level=1)
for req in project_info.get(requirements, []):
doc.add_paragraph(f• {req})
# 商务条款
doc.add_heading(三、商务条款, level=1)
doc.addparagraph(f预算金额:{projectinfo.get(budget, )})
doc.addparagraph(f交付时间:{projectinfo.get(deadline, )})
doc.addparagraph(f付款方式:{projectinfo.get(payment, )})
# 评分标准
doc.add_heading(四、评分标准, level=1)
return doc
def bidtemplate(self, project_info, industry):
投标书模板
doc = Document()
# 投标函
title = doc.add_heading(投标书, 0)
title.alignment = WDALIGNPARAGRAPH.CENTER
doc.add_heading(一、投标函, level=1)
doc.addparagraph(f致:{projectinfo.get(organization, )})
doc.addparagraph(f我方愿意按照招标文件的要求,投标{projectinfo.get(name, )}项目。)
# 报价
doc.add_heading(二、商务报价, level=1)
# 技术方案
doc.add_heading(三、技术方案, level=1)
# 资质证明
doc.add_heading(四、资质证明, level=1)
return doc
def technicaltemplate(self, project_info, industry):
技术方案模板
doc = Document()
title = doc.add_heading(技术方案, 0)
title.alignment = WDALIGNPARAGRAPH.CENTER
doc.add_heading(一、技术架构, level=1)
doc.add_heading(二、功能模块, level=1)
doc.add_heading(三、技术路线, level=1)
doc.add_heading(四、安全方案, level=1)
doc.add_heading(五、运维方案, level=1)
return doc
def commercialtemplate(self, project_info, industry):
商务报价模板
doc = Document()
title = doc.add_heading(商务报价, 0)
title.alignment = WDALIGNPARAGRAPH.CENTER
doc.add_heading(一、报价明细, level=1)
doc.add_heading(二、付款方式, level=1)
doc.add_heading(三、售后服务, level=1)
doc.add_heading(四、质保承诺, level=1)
return doc
project_info = {
name: 智慧城市平台建设项目,
id: ZB2026-001,
organization: XX市政府,
budget: 500万元,
deadline: 2026年6月30日,
payment: 验收后30日内支付,
requirements: [
支持100万用户并发,
99.9%系统可用性,
符合等保三级要求
]
}
generator.generate(bid, project_info, it, bid.docx)
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 china-bid-generator-1775930546 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 china-bid-generator-1775930546 技能
skillhub install china-bid-generator-1775930546
文件大小: 3.83 KB | 发布时间: 2026-4-12 09:21