# 项目名称 commercial_company ## 项目背景 - 为推动中小商业企业信用体系建设,中国中小商业企业协会(甲方)与A公司(乙方)双方本着互利互惠、共同发展的原则,在平等自愿的基础上,经友好协商,就中国中小商业企业协会会员企业的信用评价、信用和融资相关培训、企业财务优化咨询等工作达成合作协议。 ## 功能 - 信用评级模型打分 - 信用评级自动报告生成 ## 如何启动运行 1. 克隆仓库 ```bash git clone http://101.43.226.158:3000/SMEA/commercialcompany.git ``` 2. 安装依赖 ```bash pip install -r requirements.txt ``` 3. 运行项目 ```bash python main.py ``` ## 项目结构 ```angular2html commercialcompany/ ├── App/ │ ├── Router/ │ │ ├── init.py │ │ ├── ModelRouter.py │ │ ├── ReportRouter.py │ │ ├── ReportV2Router.py │ │ └── ScoreRouter.py │ │ │ └── Schemas/ │ ├── init.py │ ├── ModelSchemas.py │ ├── ReportSchemas.py │ ├── ReportV2Schemas.py │ └── ReportV3Schemas.py │ ├── Utils/ │ ├── AccessControl/ │ ├── Authentication/ │ ├── File/ │ ├── OpenaiUtils/ │ └── init.py │ ├── venv/ # 虚拟环境目录 ├── .gitignore ├── app.log # 项目日志文件 ├── main.py # 项目入口文件 ├── logger.py # 项目日志配置 ├── README.md # 项目说明文件 └── requirements.txt # 项目依赖列表 ```