├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── build-with-chatglm.yml │ ├── build-with-jittorllms.yml │ └── build-without-local-llms.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── check_proxy.py ├── colorful.py ├── config.py ├── core_functional.py ├── crazy_functional.py ├── crazy_functions ├── Langchain知识库.py ├── Latex全文润色.py ├── Latex全文翻译.py ├── Latex输出PDF结果.py ├── __init__.py ├── crazy_functions_test.py ├── crazy_utils.py ├── latex_utils.py ├── test_project │ ├── cpp │ │ ├── cppipc │ │ │ ├── buffer.cpp │ │ │ ├── ipc.cpp │ │ │ ├── policy.h │ │ │ ├── pool_alloc.cpp │ │ │ ├── prod_cons.h │ │ │ ├── queue.h │ │ │ ├── shm.cpp │ │ │ ├── waiter.h │ │ │ └── 来源 │ │ ├── libJPG │ │ │ ├── jpgd.cpp │ │ │ ├── jpgd.h │ │ │ ├── jpge.cpp │ │ │ ├── jpge.h │ │ │ └── 来源 │ │ └── longcode │ │ │ ├── jpgd.cpp │ │ │ ├── jpge.cpp │ │ │ └── prod_cons.h │ ├── latex │ │ └── attention │ │ │ ├── background.tex │ │ │ ├── introduction.tex │ │ │ ├── model_architecture.tex │ │ │ ├── parameter_attention.tex │ │ │ └── 来源 │ ├── python │ │ └── dqn │ │ │ ├── __init__.py │ │ │ ├── dqn.py │ │ │ ├── policies.py │ │ │ └── 来源 │ └── 其他测试 ├── 下载arxiv论文翻译摘要.py ├── 代码重写为全英文_多线程.py ├── 图片生成.py ├── 对话历史存档.py ├── 总结word文档.py ├── 总结音视频.py ├── 批量Markdown翻译.py ├── 批量总结PDF文档.py ├── 批量总结PDF文档pdfminer.py ├── 批量翻译PDF文档_多线程.py ├── 数学动画生成manim.py ├── 理解PDF文档内容.py ├── 生成函数注释.py ├── 联网的ChatGPT.py ├── 解析JupyterNotebook.py ├── 解析项目源代码.py ├── 询问多个大语言模型.py ├── 读文章写摘要.py ├── 谷歌检索小助手.py └── 高级功能函数模板.py ├── docker-compose.yml ├── docs ├── Dockerfile+ChatGLM ├── Dockerfile+JittorLLM ├── Dockerfile+NoLocal+Latex ├── GithubAction+ChatGLM+Moss ├── GithubAction+JittorLLMs ├── GithubAction+NoLocal ├── README.md.German.md ├── README.md.Italian.md ├── README.md.Korean.md ├── README.md.Portuguese.md ├── README_EN.md ├── README_FR.md ├── README_JP.md ├── README_RS.md ├── WithFastapi.md ├── demo.jpg ├── demo2.jpg ├── gradio-3.32.2-py3-none-any.whl ├── logo.png ├── self_analysis.md ├── test_markdown_format.py ├── translate_english.json ├── translate_japanese.json ├── translate_traditionalchinese.json └── waifu_plugin │ ├── autoload.js │ ├── flat-ui-icons-regular.eot │ ├── flat-ui-icons-regular.svg │ ├── flat-ui-icons-regular.ttf │ ├── flat-ui-icons-regular.woff │ ├── jquery-ui.min.js │ ├── jquery.min.js │ ├── live2d.js │ ├── source │ ├── waifu-tips.js │ ├── waifu-tips.json │ └── waifu.css ├── main.py ├── multi_language.py ├── request_llm ├── README.md ├── bridge_all.py ├── bridge_chatglm.py ├── bridge_chatgpt.py ├── bridge_jittorllms_llama.py ├── bridge_jittorllms_pangualpha.py ├── bridge_jittorllms_rwkv.py ├── bridge_moss.py ├── bridge_newbing.py ├── bridge_newbingfree.py ├── bridge_stackclaude.py ├── bridge_tgui.py ├── edge_gpt.py ├── edge_gpt_free.py ├── requirements_chatglm.txt ├── requirements_jittorllms.txt ├── requirements_moss.txt ├── requirements_newbing.txt ├── requirements_slackclaude.txt └── test_llms.py ├── requirements.txt ├── theme.py ├── toolbox.py └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build-with-chatglm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.github/workflows/build-with-chatglm.yml -------------------------------------------------------------------------------- /.github/workflows/build-with-jittorllms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.github/workflows/build-with-jittorllms.yml -------------------------------------------------------------------------------- /.github/workflows/build-without-local-llms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.github/workflows/build-without-local-llms.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/README.md -------------------------------------------------------------------------------- /check_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/check_proxy.py -------------------------------------------------------------------------------- /colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/colorful.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/config.py -------------------------------------------------------------------------------- /core_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/core_functional.py -------------------------------------------------------------------------------- /crazy_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functional.py -------------------------------------------------------------------------------- /crazy_functions/Langchain知识库.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/Langchain知识库.py -------------------------------------------------------------------------------- /crazy_functions/Latex全文润色.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/Latex全文润色.py -------------------------------------------------------------------------------- /crazy_functions/Latex全文翻译.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/Latex全文翻译.py -------------------------------------------------------------------------------- /crazy_functions/Latex输出PDF结果.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/Latex输出PDF结果.py -------------------------------------------------------------------------------- /crazy_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crazy_functions/crazy_functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/crazy_functions_test.py -------------------------------------------------------------------------------- /crazy_functions/crazy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/crazy_utils.py -------------------------------------------------------------------------------- /crazy_functions/latex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/latex_utils.py -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/buffer.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/ipc.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/policy.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/pool_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/pool_alloc.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/prod_cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/prod_cons.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/queue.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/shm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/shm.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/waiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/waiter.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/cppipc/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/libJPG/jpgd.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/libJPG/jpgd.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/libJPG/jpge.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/libJPG/jpge.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/libJPG/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/longcode/jpgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/longcode/jpgd.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/longcode/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/longcode/jpge.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/longcode/prod_cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/cpp/longcode/prod_cons.h -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/latex/attention/background.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/latex/attention/introduction.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/model_architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/latex/attention/model_architecture.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/parameter_attention.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/latex/attention/parameter_attention.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/latex/attention/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/python/dqn/__init__.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/python/dqn/dqn.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/python/dqn/policies.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/python/dqn/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/其他测试: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/test_project/其他测试 -------------------------------------------------------------------------------- /crazy_functions/下载arxiv论文翻译摘要.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/下载arxiv论文翻译摘要.py -------------------------------------------------------------------------------- /crazy_functions/代码重写为全英文_多线程.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/代码重写为全英文_多线程.py -------------------------------------------------------------------------------- /crazy_functions/图片生成.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/图片生成.py -------------------------------------------------------------------------------- /crazy_functions/对话历史存档.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/对话历史存档.py -------------------------------------------------------------------------------- /crazy_functions/总结word文档.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/总结word文档.py -------------------------------------------------------------------------------- /crazy_functions/总结音视频.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/总结音视频.py -------------------------------------------------------------------------------- /crazy_functions/批量Markdown翻译.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/批量Markdown翻译.py -------------------------------------------------------------------------------- /crazy_functions/批量总结PDF文档.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/批量总结PDF文档.py -------------------------------------------------------------------------------- /crazy_functions/批量总结PDF文档pdfminer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/批量总结PDF文档pdfminer.py -------------------------------------------------------------------------------- /crazy_functions/批量翻译PDF文档_多线程.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/批量翻译PDF文档_多线程.py -------------------------------------------------------------------------------- /crazy_functions/数学动画生成manim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/数学动画生成manim.py -------------------------------------------------------------------------------- /crazy_functions/理解PDF文档内容.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/理解PDF文档内容.py -------------------------------------------------------------------------------- /crazy_functions/生成函数注释.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/生成函数注释.py -------------------------------------------------------------------------------- /crazy_functions/联网的ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/联网的ChatGPT.py -------------------------------------------------------------------------------- /crazy_functions/解析JupyterNotebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/解析JupyterNotebook.py -------------------------------------------------------------------------------- /crazy_functions/解析项目源代码.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/解析项目源代码.py -------------------------------------------------------------------------------- /crazy_functions/询问多个大语言模型.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/询问多个大语言模型.py -------------------------------------------------------------------------------- /crazy_functions/读文章写摘要.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/读文章写摘要.py -------------------------------------------------------------------------------- /crazy_functions/谷歌检索小助手.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/谷歌检索小助手.py -------------------------------------------------------------------------------- /crazy_functions/高级功能函数模板.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/crazy_functions/高级功能函数模板.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Dockerfile+ChatGLM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/Dockerfile+ChatGLM -------------------------------------------------------------------------------- /docs/Dockerfile+JittorLLM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/Dockerfile+JittorLLM -------------------------------------------------------------------------------- /docs/Dockerfile+NoLocal+Latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/Dockerfile+NoLocal+Latex -------------------------------------------------------------------------------- /docs/GithubAction+ChatGLM+Moss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/GithubAction+ChatGLM+Moss -------------------------------------------------------------------------------- /docs/GithubAction+JittorLLMs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/GithubAction+JittorLLMs -------------------------------------------------------------------------------- /docs/GithubAction+NoLocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/GithubAction+NoLocal -------------------------------------------------------------------------------- /docs/README.md.German.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README.md.German.md -------------------------------------------------------------------------------- /docs/README.md.Italian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README.md.Italian.md -------------------------------------------------------------------------------- /docs/README.md.Korean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README.md.Korean.md -------------------------------------------------------------------------------- /docs/README.md.Portuguese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README.md.Portuguese.md -------------------------------------------------------------------------------- /docs/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README_EN.md -------------------------------------------------------------------------------- /docs/README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README_FR.md -------------------------------------------------------------------------------- /docs/README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README_JP.md -------------------------------------------------------------------------------- /docs/README_RS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/README_RS.md -------------------------------------------------------------------------------- /docs/WithFastapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/WithFastapi.md -------------------------------------------------------------------------------- /docs/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/demo.jpg -------------------------------------------------------------------------------- /docs/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/demo2.jpg -------------------------------------------------------------------------------- /docs/gradio-3.32.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/gradio-3.32.2-py3-none-any.whl -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/self_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/self_analysis.md -------------------------------------------------------------------------------- /docs/test_markdown_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/test_markdown_format.py -------------------------------------------------------------------------------- /docs/translate_english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/translate_english.json -------------------------------------------------------------------------------- /docs/translate_japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/translate_japanese.json -------------------------------------------------------------------------------- /docs/translate_traditionalchinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/translate_traditionalchinese.json -------------------------------------------------------------------------------- /docs/waifu_plugin/autoload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/autoload.js -------------------------------------------------------------------------------- /docs/waifu_plugin/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /docs/waifu_plugin/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/flat-ui-icons-regular.svg -------------------------------------------------------------------------------- /docs/waifu_plugin/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /docs/waifu_plugin/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /docs/waifu_plugin/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/waifu_plugin/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/jquery.min.js -------------------------------------------------------------------------------- /docs/waifu_plugin/live2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/live2d.js -------------------------------------------------------------------------------- /docs/waifu_plugin/source: -------------------------------------------------------------------------------- 1 | https://github.com/fghrsh/live2d_demo -------------------------------------------------------------------------------- /docs/waifu_plugin/waifu-tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/waifu-tips.js -------------------------------------------------------------------------------- /docs/waifu_plugin/waifu-tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/waifu-tips.json -------------------------------------------------------------------------------- /docs/waifu_plugin/waifu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/docs/waifu_plugin/waifu.css -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/main.py -------------------------------------------------------------------------------- /multi_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/multi_language.py -------------------------------------------------------------------------------- /request_llm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/README.md -------------------------------------------------------------------------------- /request_llm/bridge_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_all.py -------------------------------------------------------------------------------- /request_llm/bridge_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_chatglm.py -------------------------------------------------------------------------------- /request_llm/bridge_chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_chatgpt.py -------------------------------------------------------------------------------- /request_llm/bridge_jittorllms_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_jittorllms_llama.py -------------------------------------------------------------------------------- /request_llm/bridge_jittorllms_pangualpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_jittorllms_pangualpha.py -------------------------------------------------------------------------------- /request_llm/bridge_jittorllms_rwkv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_jittorllms_rwkv.py -------------------------------------------------------------------------------- /request_llm/bridge_moss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_moss.py -------------------------------------------------------------------------------- /request_llm/bridge_newbing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_newbing.py -------------------------------------------------------------------------------- /request_llm/bridge_newbingfree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_newbingfree.py -------------------------------------------------------------------------------- /request_llm/bridge_stackclaude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_stackclaude.py -------------------------------------------------------------------------------- /request_llm/bridge_tgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/bridge_tgui.py -------------------------------------------------------------------------------- /request_llm/edge_gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/edge_gpt.py -------------------------------------------------------------------------------- /request_llm/edge_gpt_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/edge_gpt_free.py -------------------------------------------------------------------------------- /request_llm/requirements_chatglm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/requirements_chatglm.txt -------------------------------------------------------------------------------- /request_llm/requirements_jittorllms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/requirements_jittorllms.txt -------------------------------------------------------------------------------- /request_llm/requirements_moss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/requirements_moss.txt -------------------------------------------------------------------------------- /request_llm/requirements_newbing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/requirements_newbing.txt -------------------------------------------------------------------------------- /request_llm/requirements_slackclaude.txt: -------------------------------------------------------------------------------- 1 | slack-sdk==3.21.3 -------------------------------------------------------------------------------- /request_llm/test_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/request_llm/test_llms.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/requirements.txt -------------------------------------------------------------------------------- /theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/theme.py -------------------------------------------------------------------------------- /toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/toolbox.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kindle4jerry/chatgpt_academic_english/HEAD/version --------------------------------------------------------------------------------