ChatWeb可以爬取任意网页或PDF,DOCX,TXT文件并提取正文,可以生成嵌入式概要,可以根据正文内容回答你的问题。 基于gpt3.5的chatAPI和embeddingAPI,以及向量数据库实现。
基本类似于现有的chatPDF,自动化客服AI等项目的原理。
- 爬取网页
- 提取正文
- 对于每一段落,使用gpt3.5的embeddingAPI生成向量
- 每一段落的向量和全文向量做计算,生成概要
- 将向量和文本对应关系存入向量数据库
- 对于用户输入,生成关键词
- 对关键词生成向量
- 使用向量数据库进行最近邻搜索,返回最相似的文本列表
- 使用gpt3.5的chatAPI,设计prompt,使其基于最相似的文本列表进行回答
新增的使用关键词生成向量相比直接使用问题生成向量,提高了对相关文本的搜索准确度
就是先把大量文本中提取相关内容,再进行回答,最终可以达到类似突破token限制的效果
-
安装python3
-
下载本仓库
git clone https://github.com/SkywalkerDarren/chatWeb.git
-
进入目录
cd chatWeb
-
复制
config.example.json
为config.json
-
编辑
config.json
, 设置open_ai_key
为你的openai的api key -
安装依赖
pip3 install -r requirements.txt
- 运行
python3 main.py
- 编辑
config.json
, 设置mode
为console
,api
或webui
作为选择启动模式。 console
模式下,输入/help
查看指令api
模式下,可对外提供api服务,在config.json
中可设置api_port
和api_host
webui
模式下,可提供webui服务,在config.json
中可设置webui_port
,默认为http://127.0.0.1:7860
- 编辑
config.json
, 设置use_stream
为true
- 编辑
config.json
, 设置temperature
为0-1之间的数值 - 数值越小,回答越保守稳定,数值越大,回答越大胆,可能导致出现“幻觉”
- 编辑
config.json
, 添加open_ai_proxy
为你的代理地址,如:
"open_ai_proxy": {
"http": "socks5://127.0.0.1:1081",
"https": "socks5://127.0.0.1:1081"
}
-
编辑
config.json
, 设置use_postgres
为true
-
安装postgresql
- 默认的sql地址:
postgresql://localhost:5432/mydb
或在config.json
中设置
- 默认的sql地址:
-
安装pgvector插件
编译并安装扩展(支持Postgres 11+)
git clone --branch v0.4.0 https://github.com/pgvector/pgvector.git
cd pgvector
make
make install # may need sudo
然后在您要使用它的数据库中加载它
CREATE EXTENSION vector;
- pip安装依赖
pip3 install psycopg2
Please enter the link to the article or the file path of the PDF/TXT/DOCX document: https://gutenberg.ca/ebooks/hemingwaye-oldmanandthesea/hemingwaye-oldmanandthesea-00-e.html
Please wait for 10 seconds until the webpage finishes loading.
The article has been retrieved, and the number of text fragments is: 663
...
=====================================
Query fragments used tokens: 7219, cost: $0.0028876
Query fragments used tokens: 7250, cost: $0.0029000000000000002
Query fragments used tokens: 7188, cost: $0.0028752
Query fragments used tokens: 7177, cost: $0.0028708
Query fragments used tokens: 2378, cost: $0.0009512000000000001
Embeddings have been created with 663 embeddings, using 31212 tokens, costing $0.0124848
The embeddings have been saved.
=====================================
Please enter your query (/help to view commands):
- 支持pdf/txt/docx文件
- 支持免数据库纯内存(faiss)
- 支持Stream
- 支持API
- 支持代理
- 添加colab
- 添加语言支持
- 支持temperature
- 支持webui
- 其他还没想到的