Skip to content
forked from 1Panel-dev/MaxKB

🚀 基于 LLM 大语言模型的知识库问答系统。开箱即用,支持快速嵌入到第三方业务系统,1Panel 官方出品。

License

Notifications You must be signed in to change notification settings

meifu2027/MaxKB

Repository files navigation

maxkb

1 项目结构

!!! Abstract ""

.
├── LICENSE # License 申明
├── README.md
├── apps #   后端项目根目录
│ ├── common    # 项目公共资源目录
│ ├── smartdoc  # 项目主目录 
│ ├── users     # 用户相关
│ ├── manage.py #  django项目入口
│ └── sdk # 项目通用的前后端依赖/网关的前端
├── pyproject.toml # 后端依赖 配置文件
└── ui # 前端项目根目录
├── config_example.yml # 项目配置示例 
├── main.py            # 项目入口文件 python main.py start 启动项目

2 环境准备

1 前端环境准备

2 后端环境准备

3 开发环境搭建

安装poetry包管理器

!!! Abstract ""

pip install poetry

3 开发准备

3.2 本地配置

!!! Abstract "" 若要项目启动,需要准备配置文件及目录

  • 准备配置文件
    #将config_example.yml配置文件 目录拷贝至 /opt/maxkb/conf目录下
    cp config_example.yml /opt/maxkb/conf
    • 配置/opt/maxkb/conf/config_example.yml
     # 邮箱配置
     EMAIL_ADDRESS: xxx
     EMAIL_USE_TLS: False
     EMAIL_USE_SSL: True
     EMAIL_HOST: smtp.qq.com
     EMAIL_PORT: 465
     EMAIL_HOST_USER:
     EMAIL_HOST_PASSWORD:
     # 数据库配置 
     DB_NAME: smart-doc
     DB_HOST: localhost
     DB_PORT: 5432
     DB_USER: root
     DB_PASSWORD: xxx
     DB_ENGINE: django.db.backends.postgresql_psycopg2
    

4 开发调试

4.1 启动前端项目

先在ui执行安装前端需要的依赖

npm install

启动项目

npm run dev

启动后端项目

4.2 启动后端项目

!!! Abstract "" 先在根目录执行安装后端需要的依赖

poetry install

启动项目

python main.py start

About

🚀 基于 LLM 大语言模型的知识库问答系统。开箱即用,支持快速嵌入到第三方业务系统,1Panel 官方出品。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.6%
  • Vue 29.4%
  • TypeScript 12.5%
  • SCSS 1.1%
  • JavaScript 1.0%
  • HTML 0.3%
  • Other 0.1%