Spaces:
Runtime error
Runtime error
Merge branch 'master' into huggingface
Browse files- README.md +14 -4
- requirements.txt +17 -16
README.md
CHANGED
|
@@ -285,7 +285,7 @@ Tip:不指定文件直接点击 `载入对话历史存档` 可以查看历史h
|
|
| 285 |
- version 2.0: 引入模块化函数插件
|
| 286 |
- version 1.0: 基础功能
|
| 287 |
|
| 288 |
-
gpt_academic开发者QQ
|
| 289 |
|
| 290 |
|
| 291 |
## 参考与学习
|
|
@@ -293,9 +293,19 @@ gpt_academic开发者QQ群:734063350
|
|
| 293 |
```
|
| 294 |
代码中参考了很多其他优秀项目中的设计,主要包括:
|
| 295 |
|
| 296 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 297 |
https://github.com/GaiZhenbiao/ChuanhuChatGPT
|
| 298 |
|
| 299 |
-
#
|
| 300 |
-
https://github.com/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
```
|
|
|
|
| 285 |
- version 2.0: 引入模块化函数插件
|
| 286 |
- version 1.0: 基础功能
|
| 287 |
|
| 288 |
+
gpt_academic开发者QQ群-2:610599535
|
| 289 |
|
| 290 |
|
| 291 |
## 参考与学习
|
|
|
|
| 293 |
```
|
| 294 |
代码中参考了很多其他优秀项目中的设计,主要包括:
|
| 295 |
|
| 296 |
+
# 项目1:清华ChatGLM-6B:
|
| 297 |
+
https://github.com/THUDM/ChatGLM-6B
|
| 298 |
+
|
| 299 |
+
# 项目2:清华JittorLLMs:
|
| 300 |
+
https://github.com/Jittor/JittorLLMs
|
| 301 |
+
|
| 302 |
+
# 项目3:借鉴了ChuanhuChatGPT中诸多技巧
|
| 303 |
https://github.com/GaiZhenbiao/ChuanhuChatGPT
|
| 304 |
|
| 305 |
+
# 项目4:ChatPaper
|
| 306 |
+
https://github.com/kaixindelele/ChatPaper
|
| 307 |
+
|
| 308 |
+
# 更多:
|
| 309 |
+
https://github.com/gradio-app/gradio
|
| 310 |
+
https://github.com/fghrsh/live2d_demo
|
| 311 |
```
|
requirements.txt
CHANGED
|
@@ -1,16 +1,17 @@
|
|
| 1 |
-
gradio==3.
|
| 2 |
-
tiktoken>=0.3.3
|
| 3 |
-
requests[socks]
|
| 4 |
-
transformers
|
| 5 |
-
python-markdown-math
|
| 6 |
-
beautifulsoup4
|
| 7 |
-
latex2mathml
|
| 8 |
-
python-docx
|
| 9 |
-
mdtex2html
|
| 10 |
-
colorama
|
| 11 |
-
Markdown
|
| 12 |
-
pygments
|
| 13 |
-
pymupdf
|
| 14 |
-
openai
|
| 15 |
-
numpy
|
| 16 |
-
arxiv
|
|
|
|
|
|
| 1 |
+
gradio==3.28.3
|
| 2 |
+
tiktoken>=0.3.3
|
| 3 |
+
requests[socks]
|
| 4 |
+
transformers
|
| 5 |
+
python-markdown-math
|
| 6 |
+
beautifulsoup4
|
| 7 |
+
latex2mathml
|
| 8 |
+
python-docx
|
| 9 |
+
mdtex2html
|
| 10 |
+
colorama
|
| 11 |
+
Markdown
|
| 12 |
+
pygments
|
| 13 |
+
pymupdf
|
| 14 |
+
openai
|
| 15 |
+
numpy
|
| 16 |
+
arxiv
|
| 17 |
+
pymupdf
|