commercialcompany/README.md

65 lines
1.6 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 项目名称
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 # 项目依赖列表
```