├── .env_sample ├── .gitignore ├── Agent ├── agent.py └── agent_tools.py ├── GPT-Gradio-Agent.py ├── LICENSE ├── README.md ├── README_zh-cn.md ├── embedding model └── place embedding repo here ├── gga_utils ├── common.py ├── theme.py └── vec_utils.py ├── icon ├── add_dialog.png └── delete_dialog.png ├── knowledge base └── knowledge base will be placed here ├── local_llm └── ollama.py ├── locale ├── en_US.json └── zh_CN.json ├── pic_gen └── pic_gen.py ├── requirements.txt ├── search_his └── RAG search history saved here ├── style └── style.css ├── text_splitter └── chinese_text_splitter.py └── vecstore ├── Agent.py ├── reranker.py ├── search_engine.py ├── template.py └── vecstore.py /.env_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/.env_sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/.gitignore -------------------------------------------------------------------------------- /Agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/Agent/agent.py -------------------------------------------------------------------------------- /Agent/agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/Agent/agent_tools.py -------------------------------------------------------------------------------- /GPT-Gradio-Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/GPT-Gradio-Agent.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/README_zh-cn.md -------------------------------------------------------------------------------- /embedding model/place embedding repo here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gga_utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/gga_utils/common.py -------------------------------------------------------------------------------- /gga_utils/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/gga_utils/theme.py -------------------------------------------------------------------------------- /gga_utils/vec_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/gga_utils/vec_utils.py -------------------------------------------------------------------------------- /icon/add_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/icon/add_dialog.png -------------------------------------------------------------------------------- /icon/delete_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/icon/delete_dialog.png -------------------------------------------------------------------------------- /knowledge base/knowledge base will be placed here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local_llm/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/local_llm/ollama.py -------------------------------------------------------------------------------- /locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/locale/en_US.json -------------------------------------------------------------------------------- /locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/locale/zh_CN.json -------------------------------------------------------------------------------- /pic_gen/pic_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/pic_gen/pic_gen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /search_his/RAG search history saved here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/style/style.css -------------------------------------------------------------------------------- /text_splitter/chinese_text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/text_splitter/chinese_text_splitter.py -------------------------------------------------------------------------------- /vecstore/Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/vecstore/Agent.py -------------------------------------------------------------------------------- /vecstore/reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/vecstore/reranker.py -------------------------------------------------------------------------------- /vecstore/search_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/vecstore/search_engine.py -------------------------------------------------------------------------------- /vecstore/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/vecstore/template.py -------------------------------------------------------------------------------- /vecstore/vecstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wannabeasmartguy/GPT-Gradio-Agent/HEAD/vecstore/vecstore.py --------------------------------------------------------------------------------