├── .gitignore ├── README.md ├── README_zh.md ├── configs ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── basic_config.cpython-310.pyc │ ├── kb_config.cpython-310.pyc │ ├── model_config.cpython-310.pyc │ ├── prompt_config.cpython-310.pyc │ └── server_config.cpython-310.pyc ├── basic_config.py ├── kb_config.py ├── model_config.py ├── prompt_config.py └── server_config.py ├── data └── parse │ ├── data │ ├── 1706.03762v7.pdf │ ├── GLM4.json │ ├── GLM4.txt │ ├── invoice_1.pdf │ ├── invoice_2.json │ ├── invoice_2.pdf │ ├── invoice_2.txt │ └── zh.pdf │ ├── rule_base.py │ └── unstructured_processor.py ├── docker ├── .dockerignore ├── Dockerfile └── docker-compose.yml ├── docs ├── 01_Ubuntu系统上安装Mysql.md └── 02_Ubuntu系统安装部署Milvus向量数据库.md ├── document_loaders ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── interface.cpython-310.pyc │ └── pdfloader.cpython-310.pyc ├── interface.py └── pdfloader.py ├── fufanrag ├── __init__.py ├── __pycache__ │ └── __init__.cpython-310.pyc ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── config.cpython-310.pyc │ └── config.py ├── data │ ├── indexes │ │ └── sample_data.jsonl │ ├── result │ │ ├── intermediate_data.json │ │ └── metric_score.txt │ └── test │ │ └── test.jsonl ├── dataset │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── dataset.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── dataset.py │ └── utils.py ├── evaluator │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── evaluator.cpython-310.pyc │ │ ├── metrics.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── evaluator.py │ ├── metrics.py │ └── utils.py ├── generator │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── generator.cpython-310.pyc │ └── generator.py ├── pipeline │ └── pipeline.py ├── prompt │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── base_prompt.cpython-310.pyc │ └── base_prompt.py ├── retriever │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── encoder.cpython-310.pyc │ │ ├── reranker.cpython-310.pyc │ │ ├── retriever.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── encoder.py │ ├── reranker.py │ ├── retriever.py │ └── utils.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ └── utils.cpython-310.pyc │ └── utils.py ├── images ├── 01_FastChat服务启动逻辑.png ├── 02_FastChat请求处理逻辑.png ├── 03_通用领域知识问答逻辑.png ├── 04_本地RAG知识问答开发逻辑.png ├── 05_向量数据库集成逻辑.png ├── 06_联网实时检索问答逻辑.png └── 07_llm 推荐系统实现的一种思路.png ├── knowledge_base ├── milvus_test │ └── content │ │ └── README.md ├── private │ ├── content │ │ └── LangChain.pdf │ └── vector_store │ │ └── bge-large-zh-v1.5 │ │ ├── index.faiss │ │ └── index.pkl ├── test │ ├── content │ │ └── README.md │ └── vector_store │ │ └── bge-large-zh-v1.5 │ │ ├── index.faiss │ │ └── index.pkl └── wiki │ ├── content │ └── education.jsonl │ └── vector_store │ └── bge-large-zh-v1.5 │ └── index.pkl ├── logs └── controller.log ├── playground ├── test_fastapi │ ├── __pycache__ │ │ └── fastapi_basics.cpython-311.pyc │ └── fastapi_basics.py ├── test_fastchat │ ├── mp_uvicorn_server.py │ ├── online_model_interface.py │ ├── open_source_model_interface.py │ └── uvicorn_server.py ├── test_langchainRag │ ├── .env │ ├── langchain_rag.py │ ├── langchain_rag_fastapi.py │ ├── langchain_rag_with_SQLAlchemy.py │ ├── langchain_rag_with_history.py │ ├── langchain_rag_with_stream.py │ └── static │ │ └── index.html ├── test_model │ ├── ChatGLM3 │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.yaml │ │ │ │ └── feature-request.yaml │ │ │ └── PULL_REQUEST_TEMPLATE │ │ │ │ └── pr_template.md │ │ ├── .gitignore │ │ ├── DEPLOYMENT.md │ │ ├── DEPLOYMENT_en.md │ │ ├── Intel_device_demo │ │ │ ├── README.md │ │ │ ├── ipex_llm_cpu_demo │ │ │ │ ├── api_server.py │ │ │ │ ├── chatglm3_infer.py │ │ │ │ ├── chatglm3_web_demo.py │ │ │ │ ├── generate.py │ │ │ │ ├── openai_api_request.py │ │ │ │ └── utils.py │ │ │ └── openvino_demo │ │ │ │ ├── README.md │ │ │ │ └── openvino_cli_demo.py │ │ ├── LICENSE │ │ ├── MODEL_LICENSE │ │ ├── PROMPT.md │ │ ├── PROMPT_en.md │ │ ├── README.md │ │ ├── README_en.md │ │ ├── basic_demo │ │ │ ├── cli_batch_request_demo.py │ │ │ ├── cli_demo.py │ │ │ ├── cli_demo_bad_word_ids.py │ │ │ ├── web_demo_gradio.py │ │ │ └── web_demo_streamlit.py │ │ ├── composite_demo │ │ │ ├── .streamlit │ │ │ │ └── config.toml │ │ │ ├── README.md │ │ │ ├── README_en.md │ │ │ ├── assets │ │ │ │ ├── demo.png │ │ │ │ ├── emojis.png │ │ │ │ ├── heart.png │ │ │ │ └── tool.png │ │ │ ├── client.py │ │ │ ├── conversation.py │ │ │ ├── demo_chat.py │ │ │ ├── demo_ci.py │ │ │ ├── demo_tool.py │ │ │ ├── main.py │ │ │ ├── requirements.txt │ │ │ └── tool_registry.py │ │ ├── finetune_demo │ │ │ ├── README.md │ │ │ ├── README_en.md │ │ │ ├── configs │ │ │ │ ├── ds_zero_2.json │ │ │ │ ├── ds_zero_3.json │ │ │ │ ├── lora.yaml │ │ │ │ ├── ptuning_v2.yaml │ │ │ │ └── sft.yaml │ │ │ ├── finetune_hf.py │ │ │ ├── inference_hf.py │ │ │ ├── lora_finetune.ipynb │ │ │ └── requirements.txt │ │ ├── langchain_demo │ │ │ ├── ChatGLM3.py │ │ │ ├── main.py │ │ │ └── tools │ │ │ │ ├── Calculator.py │ │ │ │ ├── DistanceConversion.py │ │ │ │ └── Weather.py │ │ ├── openai_api_demo │ │ │ ├── .env │ │ │ ├── =2.5.1 │ │ │ ├── api_server.py │ │ │ ├── docker-compose.yml │ │ │ ├── langchain_openai_api.py │ │ │ ├── openai_api_request.py │ │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── resources │ │ │ ├── WECHAT.md │ │ │ ├── cli-demo.png │ │ │ ├── code_en.gif │ │ │ ├── heart.png │ │ │ ├── tool.png │ │ │ ├── tool_en.png │ │ │ ├── web-demo.gif │ │ │ ├── web-demo2.gif │ │ │ ├── web-demo2.png │ │ │ └── wechat.jpg │ │ ├── tensorrt_llm_demo │ │ │ ├── README.md │ │ │ └── tensorrt_llm_cli_demo.py │ │ ├── tools_using_demo │ │ │ ├── README.md │ │ │ ├── README_en.md │ │ │ ├── cli_demo_tool.py │ │ │ ├── openai_api_demo.py │ │ │ └── tool_register.py │ │ └── update_requirements.sh │ ├── README.md │ ├── chatglm3_langchain.py │ ├── glm-4_langchain.py │ └── glm4_example.py ├── test_mysql_conn │ ├── basic_sqlalchemy.py │ └── test_mysql.py └── test_startup │ └── startupV1.py ├── requirements.txt ├── scripts ├── course_data │ ├── course_metadata.csv │ ├── data.zip │ ├── final_course.csv │ ├── 在线大模型课件 │ │ └── Ch 2 智选GPU算力平台.pdf │ └── 开源大模型课件 │ │ ├── Ch 1 开源大模型本地部署硬件指南-checkpoint.pdf │ │ ├── Ch 4 Ubuntu 22.04下本地化部署ChatGLM3-6B模型.pdf │ │ └── Ch 5 在Ubuntu 22.04系统下ChatGLM3-6B高效微调实战.pdf ├── course_to_milvus.py ├── preprocess_recommended.py └── preprocess_wiki.py ├── server ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── api_router.cpython-310.pyc │ ├── embeddings_api.cpython-310.pyc │ ├── minx_chat_openai.cpython-310.pyc │ ├── minx_chat_openai.cpython-311.pyc │ ├── utils.cpython-310.pyc │ └── utils.cpython-311.pyc ├── agent │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── callbacks.cpython-310.pyc │ │ ├── custom_template.cpython-310.pyc │ │ ├── model_contain.cpython-310.pyc │ │ └── tools_select.cpython-310.pyc │ ├── callbacks.py │ ├── custom_agent │ │ ├── ChatGLM3Agent.py │ │ └── __pycache__ │ │ │ └── ChatGLM3Agent.cpython-310.pyc │ ├── custom_template.py │ ├── model_contain.py │ ├── tools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── duckgosearch.cpython-310.pyc │ │ └── duckgosearch.py │ └── tools_select.py ├── api_router.py ├── callback_handler │ ├── __pycache__ │ │ └── conversation_callback_handler.cpython-310.pyc │ └── conversation_callback_handler.py ├── chat │ ├── __pycache__ │ │ ├── agent_chat.cpython-310.pyc │ │ ├── chat.cpython-310.pyc │ │ ├── knowledge_base_chat.cpython-310.pyc │ │ ├── recommend_chat.cpython-310.pyc │ │ ├── recommendation_chat.cpython-310.pyc │ │ ├── search_engine_chat.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── agent_chat.py │ ├── chat.py │ ├── knowledge_base_chat.py │ ├── recommendation_chat.py │ ├── search_engine_chat.py │ └── utils.py ├── db │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── base.cpython-310.pyc │ │ └── session.cpython-310.pyc │ ├── base.py │ ├── create_all_models.py │ ├── delete_all_table.py │ ├── models │ │ ├── __pycache__ │ │ │ ├── conversation_model.cpython-310.pyc │ │ │ ├── knowledge_base_model.cpython-310.pyc │ │ │ ├── knowledge_file_model.cpython-310.pyc │ │ │ ├── message_model.cpython-310.pyc │ │ │ └── user_model.cpython-310.pyc │ │ ├── conversation_model.py │ │ ├── knowledge_base_model.py │ │ ├── knowledge_file_model.py │ │ ├── message_model.py │ │ └── user_model.py │ ├── repository │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── conversation_repository.cpython-310.pyc │ │ │ ├── knowledge_base_repository.cpython-310.pyc │ │ │ ├── knowledge_file_repository.cpython-310.pyc │ │ │ ├── message_repository.cpython-310.pyc │ │ │ ├── user_repository.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── conversation_repository.py │ │ ├── knowledge_base_repository.py │ │ ├── knowledge_file_repository.py │ │ ├── message_repository.py │ │ ├── user_repository.py │ │ └── utils.py │ └── session.py ├── embeddings_api.py ├── knowledge_base │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── kb_doc_api.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── init_vs.py │ ├── kb_cache │ │ ├── __pycache__ │ │ │ ├── base.cpython-310.pyc │ │ │ ├── base.cpython-311.pyc │ │ │ ├── faiss_cache.cpython-310.pyc │ │ │ └── faiss_cache.cpython-311.pyc │ │ ├── base.py │ │ └── faiss_cache.py │ ├── kb_doc_api.py │ ├── kb_service │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── base.cpython-310.pyc │ │ │ ├── faiss_kb_service.cpython-310.pyc │ │ │ └── milvus_kb_service.cpython-310.pyc │ │ ├── base.py │ │ ├── faiss_kb_service.py │ │ └── milvus_kb_service.py │ ├── model │ │ ├── __pycache__ │ │ │ ├── kb_document_model.cpython-310.pyc │ │ │ └── kb_document_model.cpython-311.pyc │ │ └── kb_document_model.py │ └── utils.py ├── main.py ├── memory │ ├── __pycache__ │ │ └── conversation_db_buffer_memory.cpython-310.pyc │ └── conversation_db_buffer_memory.py ├── minx_chat_openai.py ├── model_workers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── base.cpython-310.pyc │ │ ├── zhipu.cpython-310.pyc │ │ └── zhipu.cpython-311.pyc │ ├── base.py │ └── zhipu.py ├── reranker │ ├── __pycache__ │ │ ├── reranker.cpython-310.pyc │ │ └── search_reranker.cpython-310.pyc │ ├── reranker.py │ └── search_reranker.py └── utils.py ├── startup.py ├── static ├── __MACOSX │ ├── ._dist │ └── dist │ │ ├── ._app-loading.css │ │ ├── ._favicon.ico │ │ ├── ._favicon.png │ │ ├── ._index.html │ │ ├── ._static │ │ └── static │ │ ├── ._403-DGkE3wGt.js │ │ ├── ._404-DfhRmA2l.js │ │ ├── ._ErrorPageLayout-CGFdhjj_.js │ │ ├── ._ErrorPageLayout-zOAQY_Gs.css │ │ ├── ._SwitchRoles-CoSs55AH.css │ │ ├── ._SwitchRoles-O7Gv-uJI.js │ │ ├── ._chatHistory-D8um-KwZ.js │ │ ├── ._directive-BUNB06L6.js │ │ ├── ._directive-NEoCH_vr.css │ │ ├── ._element-jUUjv72Y.js │ │ ├── ._face-CR2u4JKU.png │ │ ├── ._iconfont.1716777871692-D4HyIDhF.woff │ │ ├── ._iconfont.1716777871692-DDhY9P9i.ttf │ │ ├── ._index-9m_pB3jU.css │ │ ├── ._index-BM0Sj0Wq.js │ │ ├── ._index-BOxuAFt1.css │ │ ├── ._index-BPhoVeuT.js │ │ ├── ._index-BRmddp6Q.css │ │ ├── ._index-BTuCLTzG.js │ │ ├── ._index-Bhz4GkvR.js │ │ ├── ._index-CZ2C-tJM.js │ │ ├── ._index-Can5N1im.css │ │ ├── ._index-Cuci-wC0.js │ │ ├── ._index-CwQeRnkK.css │ │ ├── ._index-D06GKQy1.css │ │ ├── ._index-D5jwABa5.js │ │ ├── ._index-D6rBnSSJ.js │ │ ├── ._index-DN4xFmAT.js │ │ ├── ._index-Da4lwYC1.css │ │ ├── ._index-Db28Njib.js │ │ ├── ._index-DjCGOFdv.js │ │ ├── ._index-DmS5ZuTx.css │ │ ├── ._index-Dzv453Ar.js │ │ ├── ._index-Nbpt45W3.js │ │ ├── ._index-YEeDdOYi.css │ │ ├── ._index-fkgbvabe.js │ │ ├── ._index-g7R_tYxJ.js │ │ ├── ._index-omA-iFTI.js │ │ ├── ._index-tavtFK3w.css │ │ ├── ._index-u3hIk7lp.js │ │ ├── ._index-uz44_C95.js │ │ ├── ._index-yWD1c-VP.js │ │ ├── ._index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js │ │ ├── ._index.vue_vue_type_script_setup_true_lang-CSuimxwc.js │ │ ├── ._logo-BY3URNHQ.png │ │ ├── ._logo-sSbhS2d3.jpg │ │ ├── ._logo-text-1-CHuEm79x.png │ │ ├── ._logo-text-2-CVewf8RJ.png │ │ ├── ._page-BBYT-JQ4.js │ │ ├── ._page-D_JSdlLP.css │ │ ├── ._use-fetch-select-CZWdCyZv.js │ │ ├── ._use-fullscreen-loading-B6SweF--.js │ │ ├── ._use-watermark-C8yPoY9R.css │ │ ├── ._use-watermark-DudJ6gFB.js │ │ ├── ._useWatermark-BrY0Mnwc.js │ │ ├── ._vue-39WfQX0x.js │ │ └── ._vxe-DW97H3iJ.js ├── bak │ └── dist.zip ├── dist.zip └── dist │ ├── app-loading.css │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ └── static │ ├── 403-DGkE3wGt.js │ ├── 404-DfhRmA2l.js │ ├── ErrorPageLayout-CGFdhjj_.js │ ├── ErrorPageLayout-zOAQY_Gs.css │ ├── SwitchRoles-CoSs55AH.css │ ├── SwitchRoles-O7Gv-uJI.js │ ├── chatHistory-D8um-KwZ.js │ ├── directive-BUNB06L6.js │ ├── directive-NEoCH_vr.css │ ├── element-jUUjv72Y.js │ ├── face-CR2u4JKU.png │ ├── iconfont.1716777871692-D4HyIDhF.woff │ ├── iconfont.1716777871692-DDhY9P9i.ttf │ ├── index-9m_pB3jU.css │ ├── index-BM0Sj0Wq.js │ ├── index-BOxuAFt1.css │ ├── index-BPhoVeuT.js │ ├── index-BRmddp6Q.css │ ├── index-BTuCLTzG.js │ ├── index-Bhz4GkvR.js │ ├── index-CZ2C-tJM.js │ ├── index-Can5N1im.css │ ├── index-Cuci-wC0.js │ ├── index-CwQeRnkK.css │ ├── index-D06GKQy1.css │ ├── index-D5jwABa5.js │ ├── index-D6rBnSSJ.js │ ├── index-DN4xFmAT.js │ ├── index-Da4lwYC1.css │ ├── index-Db28Njib.js │ ├── index-DjCGOFdv.js │ ├── index-DmS5ZuTx.css │ ├── index-Dzv453Ar.js │ ├── index-Nbpt45W3.js │ ├── index-YEeDdOYi.css │ ├── index-fkgbvabe.js │ ├── index-g7R_tYxJ.js │ ├── index-omA-iFTI.js │ ├── index-tavtFK3w.css │ ├── index-u3hIk7lp.js │ ├── index-uz44_C95.js │ ├── index-yWD1c-VP.js │ ├── index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js │ ├── index.vue_vue_type_script_setup_true_lang-CSuimxwc.js │ ├── logo-BY3URNHQ.png │ ├── logo-sSbhS2d3.jpg │ ├── logo-text-1-CHuEm79x.png │ ├── logo-text-2-CVewf8RJ.png │ ├── page-BBYT-JQ4.js │ ├── page-D_JSdlLP.css │ ├── use-fetch-select-CZWdCyZv.js │ ├── use-fullscreen-loading-B6SweF--.js │ ├── use-watermark-C8yPoY9R.css │ ├── use-watermark-DudJ6gFB.js │ ├── useWatermark-BrY0Mnwc.js │ ├── vue-39WfQX0x.js │ └── vxe-DW97H3iJ.js └── text_splitter ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── __init__.cpython-311.pyc ├── chinese_recursive_text_splitter.cpython-310.pyc ├── chinese_recursive_text_splitter.cpython-311.pyc ├── zh_title_enhance.cpython-310.pyc └── zh_title_enhance.cpython-311.pyc ├── chinese_recursive_text_splitter.py └── zh_title_enhance.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/README_zh.md -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__init__.py -------------------------------------------------------------------------------- /configs/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /configs/__pycache__/basic_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/basic_config.cpython-310.pyc -------------------------------------------------------------------------------- /configs/__pycache__/kb_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/kb_config.cpython-310.pyc -------------------------------------------------------------------------------- /configs/__pycache__/model_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/model_config.cpython-310.pyc -------------------------------------------------------------------------------- /configs/__pycache__/prompt_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/prompt_config.cpython-310.pyc -------------------------------------------------------------------------------- /configs/__pycache__/server_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/__pycache__/server_config.cpython-310.pyc -------------------------------------------------------------------------------- /configs/basic_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/basic_config.py -------------------------------------------------------------------------------- /configs/kb_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/kb_config.py -------------------------------------------------------------------------------- /configs/model_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/model_config.py -------------------------------------------------------------------------------- /configs/prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/prompt_config.py -------------------------------------------------------------------------------- /configs/server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/configs/server_config.py -------------------------------------------------------------------------------- /data/parse/data/1706.03762v7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/1706.03762v7.pdf -------------------------------------------------------------------------------- /data/parse/data/GLM4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/GLM4.json -------------------------------------------------------------------------------- /data/parse/data/GLM4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/GLM4.txt -------------------------------------------------------------------------------- /data/parse/data/invoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/invoice_1.pdf -------------------------------------------------------------------------------- /data/parse/data/invoice_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/invoice_2.json -------------------------------------------------------------------------------- /data/parse/data/invoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/invoice_2.pdf -------------------------------------------------------------------------------- /data/parse/data/invoice_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/invoice_2.txt -------------------------------------------------------------------------------- /data/parse/data/zh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/data/zh.pdf -------------------------------------------------------------------------------- /data/parse/rule_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/rule_base.py -------------------------------------------------------------------------------- /data/parse/unstructured_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/data/parse/unstructured_processor.py -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/01_Ubuntu系统上安装Mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/docs/01_Ubuntu系统上安装Mysql.md -------------------------------------------------------------------------------- /docs/02_Ubuntu系统安装部署Milvus向量数据库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/docs/02_Ubuntu系统安装部署Milvus向量数据库.md -------------------------------------------------------------------------------- /document_loaders/__init__.py: -------------------------------------------------------------------------------- 1 | from .pdfloader import UnstructuredLightPipeline 2 | -------------------------------------------------------------------------------- /document_loaders/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/document_loaders/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /document_loaders/__pycache__/interface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/document_loaders/__pycache__/interface.cpython-310.pyc -------------------------------------------------------------------------------- /document_loaders/__pycache__/pdfloader.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/document_loaders/__pycache__/pdfloader.cpython-310.pyc -------------------------------------------------------------------------------- /document_loaders/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/document_loaders/interface.py -------------------------------------------------------------------------------- /document_loaders/pdfloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/document_loaders/pdfloader.py -------------------------------------------------------------------------------- /fufanrag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fufanrag/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/config/__init__.py -------------------------------------------------------------------------------- /fufanrag/config/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/config/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/config/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/config/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/config/config.py -------------------------------------------------------------------------------- /fufanrag/data/indexes/sample_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/data/indexes/sample_data.jsonl -------------------------------------------------------------------------------- /fufanrag/data/result/intermediate_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/data/result/intermediate_data.json -------------------------------------------------------------------------------- /fufanrag/data/result/metric_score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/data/result/metric_score.txt -------------------------------------------------------------------------------- /fufanrag/data/test/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/data/test/test.jsonl -------------------------------------------------------------------------------- /fufanrag/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/__init__.py -------------------------------------------------------------------------------- /fufanrag/dataset/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/dataset/__pycache__/dataset.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/__pycache__/dataset.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/dataset/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/dataset.py -------------------------------------------------------------------------------- /fufanrag/dataset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/dataset/utils.py -------------------------------------------------------------------------------- /fufanrag/evaluator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/__init__.py -------------------------------------------------------------------------------- /fufanrag/evaluator/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/evaluator/__pycache__/evaluator.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/__pycache__/evaluator.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/evaluator/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/evaluator/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/evaluator/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/evaluator.py -------------------------------------------------------------------------------- /fufanrag/evaluator/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/metrics.py -------------------------------------------------------------------------------- /fufanrag/evaluator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/evaluator/utils.py -------------------------------------------------------------------------------- /fufanrag/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/generator/__init__.py -------------------------------------------------------------------------------- /fufanrag/generator/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/generator/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/generator/__pycache__/generator.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/generator/__pycache__/generator.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/generator/generator.py -------------------------------------------------------------------------------- /fufanrag/pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/pipeline/pipeline.py -------------------------------------------------------------------------------- /fufanrag/prompt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/prompt/__init__.py -------------------------------------------------------------------------------- /fufanrag/prompt/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/prompt/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/prompt/__pycache__/base_prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/prompt/__pycache__/base_prompt.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/prompt/base_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/prompt/base_prompt.py -------------------------------------------------------------------------------- /fufanrag/retriever/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__init__.py -------------------------------------------------------------------------------- /fufanrag/retriever/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/retriever/__pycache__/encoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__pycache__/encoder.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/retriever/__pycache__/reranker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__pycache__/reranker.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/retriever/__pycache__/retriever.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__pycache__/retriever.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/retriever/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/retriever/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/encoder.py -------------------------------------------------------------------------------- /fufanrag/retriever/reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/reranker.py -------------------------------------------------------------------------------- /fufanrag/retriever/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/retriever.py -------------------------------------------------------------------------------- /fufanrag/retriever/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/retriever/utils.py -------------------------------------------------------------------------------- /fufanrag/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/utils/__init__.py -------------------------------------------------------------------------------- /fufanrag/utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/utils/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/utils/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /fufanrag/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/fufanrag/utils/utils.py -------------------------------------------------------------------------------- /images/01_FastChat服务启动逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/01_FastChat服务启动逻辑.png -------------------------------------------------------------------------------- /images/02_FastChat请求处理逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/02_FastChat请求处理逻辑.png -------------------------------------------------------------------------------- /images/03_通用领域知识问答逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/03_通用领域知识问答逻辑.png -------------------------------------------------------------------------------- /images/04_本地RAG知识问答开发逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/04_本地RAG知识问答开发逻辑.png -------------------------------------------------------------------------------- /images/05_向量数据库集成逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/05_向量数据库集成逻辑.png -------------------------------------------------------------------------------- /images/06_联网实时检索问答逻辑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/06_联网实时检索问答逻辑.png -------------------------------------------------------------------------------- /images/07_llm 推荐系统实现的一种思路.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/images/07_llm 推荐系统实现的一种思路.png -------------------------------------------------------------------------------- /knowledge_base/milvus_test/content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/milvus_test/content/README.md -------------------------------------------------------------------------------- /knowledge_base/private/content/LangChain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/private/content/LangChain.pdf -------------------------------------------------------------------------------- /knowledge_base/private/vector_store/bge-large-zh-v1.5/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/private/vector_store/bge-large-zh-v1.5/index.faiss -------------------------------------------------------------------------------- /knowledge_base/private/vector_store/bge-large-zh-v1.5/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/private/vector_store/bge-large-zh-v1.5/index.pkl -------------------------------------------------------------------------------- /knowledge_base/test/content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/test/content/README.md -------------------------------------------------------------------------------- /knowledge_base/test/vector_store/bge-large-zh-v1.5/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/test/vector_store/bge-large-zh-v1.5/index.faiss -------------------------------------------------------------------------------- /knowledge_base/test/vector_store/bge-large-zh-v1.5/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/test/vector_store/bge-large-zh-v1.5/index.pkl -------------------------------------------------------------------------------- /knowledge_base/wiki/content/education.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/wiki/content/education.jsonl -------------------------------------------------------------------------------- /knowledge_base/wiki/vector_store/bge-large-zh-v1.5/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/knowledge_base/wiki/vector_store/bge-large-zh-v1.5/index.pkl -------------------------------------------------------------------------------- /logs/controller.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/logs/controller.log -------------------------------------------------------------------------------- /playground/test_fastapi/__pycache__/fastapi_basics.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastapi/__pycache__/fastapi_basics.cpython-311.pyc -------------------------------------------------------------------------------- /playground/test_fastapi/fastapi_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastapi/fastapi_basics.py -------------------------------------------------------------------------------- /playground/test_fastchat/mp_uvicorn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastchat/mp_uvicorn_server.py -------------------------------------------------------------------------------- /playground/test_fastchat/online_model_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastchat/online_model_interface.py -------------------------------------------------------------------------------- /playground/test_fastchat/open_source_model_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastchat/open_source_model_interface.py -------------------------------------------------------------------------------- /playground/test_fastchat/uvicorn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_fastchat/uvicorn_server.py -------------------------------------------------------------------------------- /playground/test_langchainRag/.env: -------------------------------------------------------------------------------- 1 | ZHIPUAI_API_KEY = "8e1482448c5924ea98bc483b4846009d.bViRUeDbZShksjPO" -------------------------------------------------------------------------------- /playground/test_langchainRag/langchain_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/langchain_rag.py -------------------------------------------------------------------------------- /playground/test_langchainRag/langchain_rag_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/langchain_rag_fastapi.py -------------------------------------------------------------------------------- /playground/test_langchainRag/langchain_rag_with_SQLAlchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/langchain_rag_with_SQLAlchemy.py -------------------------------------------------------------------------------- /playground/test_langchainRag/langchain_rag_with_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/langchain_rag_with_history.py -------------------------------------------------------------------------------- /playground/test_langchainRag/langchain_rag_with_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/langchain_rag_with_stream.py -------------------------------------------------------------------------------- /playground/test_langchainRag/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_langchainRag/static/index.html -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/.github/PULL_REQUEST_TEMPLATE/pr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/.github/PULL_REQUEST_TEMPLATE/pr_template.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/.gitignore -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/DEPLOYMENT.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/DEPLOYMENT_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/DEPLOYMENT_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/api_server.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/chatglm3_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/chatglm3_infer.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/chatglm3_web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/chatglm3_web_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/generate.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/openai_api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/openai_api_request.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/ipex_llm_cpu_demo/utils.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/openvino_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/openvino_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/Intel_device_demo/openvino_demo/openvino_cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/Intel_device_demo/openvino_demo/openvino_cli_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/LICENSE -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/MODEL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/MODEL_LICENSE -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/PROMPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/PROMPT.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/PROMPT_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/PROMPT_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/README_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/basic_demo/cli_batch_request_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/basic_demo/cli_batch_request_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/basic_demo/cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/basic_demo/cli_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/basic_demo/cli_demo_bad_word_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/basic_demo/cli_demo_bad_word_ids.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/basic_demo/web_demo_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/basic_demo/web_demo_gradio.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/basic_demo/web_demo_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/basic_demo/web_demo_streamlit.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | font = "monospace" -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/README_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/assets/demo.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/assets/emojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/assets/emojis.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/assets/heart.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/assets/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/assets/tool.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/client.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/conversation.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/demo_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/demo_chat.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/demo_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/demo_ci.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/demo_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/demo_tool.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/main.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/requirements.txt -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/composite_demo/tool_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/composite_demo/tool_registry.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/README_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/configs/ds_zero_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/configs/ds_zero_2.json -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/configs/ds_zero_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/configs/ds_zero_3.json -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/configs/lora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/configs/lora.yaml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/configs/ptuning_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/configs/ptuning_v2.yaml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/configs/sft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/configs/sft.yaml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/finetune_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/finetune_hf.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/inference_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/inference_hf.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/lora_finetune.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/lora_finetune.ipynb -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/finetune_demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/finetune_demo/requirements.txt -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/langchain_demo/ChatGLM3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/langchain_demo/ChatGLM3.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/langchain_demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/langchain_demo/main.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/langchain_demo/tools/Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/langchain_demo/tools/Calculator.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/langchain_demo/tools/DistanceConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/langchain_demo/tools/DistanceConversion.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/langchain_demo/tools/Weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/langchain_demo/tools/Weather.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/.env -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/=2.5.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/api_server.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/docker-compose.yml -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/langchain_openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/langchain_openai_api.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/openai_api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/openai_api_request.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/openai_api_demo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/openai_api_demo/utils.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/requirements.txt -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/WECHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/WECHAT.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/cli-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/cli-demo.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/code_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/code_en.gif -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/heart.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/tool.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/tool_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/tool_en.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/web-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/web-demo.gif -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/web-demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/web-demo2.gif -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/web-demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/web-demo2.png -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/resources/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/resources/wechat.jpg -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tensorrt_llm_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tensorrt_llm_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tensorrt_llm_demo/tensorrt_llm_cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tensorrt_llm_demo/tensorrt_llm_cli_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tools_using_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tools_using_demo/README.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tools_using_demo/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tools_using_demo/README_en.md -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tools_using_demo/cli_demo_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tools_using_demo/cli_demo_tool.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tools_using_demo/openai_api_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tools_using_demo/openai_api_demo.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/tools_using_demo/tool_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/tools_using_demo/tool_register.py -------------------------------------------------------------------------------- /playground/test_model/ChatGLM3/update_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/ChatGLM3/update_requirements.sh -------------------------------------------------------------------------------- /playground/test_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/README.md -------------------------------------------------------------------------------- /playground/test_model/chatglm3_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/chatglm3_langchain.py -------------------------------------------------------------------------------- /playground/test_model/glm-4_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/glm-4_langchain.py -------------------------------------------------------------------------------- /playground/test_model/glm4_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_model/glm4_example.py -------------------------------------------------------------------------------- /playground/test_mysql_conn/basic_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_mysql_conn/basic_sqlalchemy.py -------------------------------------------------------------------------------- /playground/test_mysql_conn/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_mysql_conn/test_mysql.py -------------------------------------------------------------------------------- /playground/test_startup/startupV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/playground/test_startup/startupV1.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/course_data/course_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/course_metadata.csv -------------------------------------------------------------------------------- /scripts/course_data/data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/data.zip -------------------------------------------------------------------------------- /scripts/course_data/final_course.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/final_course.csv -------------------------------------------------------------------------------- /scripts/course_data/在线大模型课件/Ch 2 智选GPU算力平台.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/在线大模型课件/Ch 2 智选GPU算力平台.pdf -------------------------------------------------------------------------------- /scripts/course_data/开源大模型课件/Ch 1 开源大模型本地部署硬件指南-checkpoint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/开源大模型课件/Ch 1 开源大模型本地部署硬件指南-checkpoint.pdf -------------------------------------------------------------------------------- /scripts/course_data/开源大模型课件/Ch 4 Ubuntu 22.04下本地化部署ChatGLM3-6B模型.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/开源大模型课件/Ch 4 Ubuntu 22.04下本地化部署ChatGLM3-6B模型.pdf -------------------------------------------------------------------------------- /scripts/course_data/开源大模型课件/Ch 5 在Ubuntu 22.04系统下ChatGLM3-6B高效微调实战.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_data/开源大模型课件/Ch 5 在Ubuntu 22.04系统下ChatGLM3-6B高效微调实战.pdf -------------------------------------------------------------------------------- /scripts/course_to_milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/course_to_milvus.py -------------------------------------------------------------------------------- /scripts/preprocess_recommended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/preprocess_recommended.py -------------------------------------------------------------------------------- /scripts/preprocess_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/scripts/preprocess_wiki.py -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /server/__pycache__/api_router.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/api_router.cpython-310.pyc -------------------------------------------------------------------------------- /server/__pycache__/embeddings_api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/embeddings_api.cpython-310.pyc -------------------------------------------------------------------------------- /server/__pycache__/minx_chat_openai.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/minx_chat_openai.cpython-310.pyc -------------------------------------------------------------------------------- /server/__pycache__/minx_chat_openai.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/minx_chat_openai.cpython-311.pyc -------------------------------------------------------------------------------- /server/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /server/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /server/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__init__.py -------------------------------------------------------------------------------- /server/agent/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/__pycache__/callbacks.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__pycache__/callbacks.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/__pycache__/custom_template.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__pycache__/custom_template.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/__pycache__/model_contain.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__pycache__/model_contain.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/__pycache__/tools_select.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/__pycache__/tools_select.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/callbacks.py -------------------------------------------------------------------------------- /server/agent/custom_agent/ChatGLM3Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/custom_agent/ChatGLM3Agent.py -------------------------------------------------------------------------------- /server/agent/custom_agent/__pycache__/ChatGLM3Agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/custom_agent/__pycache__/ChatGLM3Agent.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/custom_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/custom_template.py -------------------------------------------------------------------------------- /server/agent/model_contain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/model_contain.py -------------------------------------------------------------------------------- /server/agent/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/tools/__init__.py -------------------------------------------------------------------------------- /server/agent/tools/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/tools/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/tools/__pycache__/duckgosearch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/tools/__pycache__/duckgosearch.cpython-310.pyc -------------------------------------------------------------------------------- /server/agent/tools/duckgosearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/tools/duckgosearch.py -------------------------------------------------------------------------------- /server/agent/tools_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/agent/tools_select.py -------------------------------------------------------------------------------- /server/api_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/api_router.py -------------------------------------------------------------------------------- /server/callback_handler/__pycache__/conversation_callback_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/callback_handler/__pycache__/conversation_callback_handler.cpython-310.pyc -------------------------------------------------------------------------------- /server/callback_handler/conversation_callback_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/callback_handler/conversation_callback_handler.py -------------------------------------------------------------------------------- /server/chat/__pycache__/agent_chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/agent_chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/knowledge_base_chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/knowledge_base_chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/recommend_chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/recommend_chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/recommendation_chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/recommendation_chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/search_engine_chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/search_engine_chat.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /server/chat/agent_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/agent_chat.py -------------------------------------------------------------------------------- /server/chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/chat.py -------------------------------------------------------------------------------- /server/chat/knowledge_base_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/knowledge_base_chat.py -------------------------------------------------------------------------------- /server/chat/recommendation_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/recommendation_chat.py -------------------------------------------------------------------------------- /server/chat/search_engine_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/search_engine_chat.py -------------------------------------------------------------------------------- /server/chat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/chat/utils.py -------------------------------------------------------------------------------- /server/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/__init__.py -------------------------------------------------------------------------------- /server/db/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/__pycache__/session.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/__pycache__/session.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/base.py -------------------------------------------------------------------------------- /server/db/create_all_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/create_all_models.py -------------------------------------------------------------------------------- /server/db/delete_all_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/delete_all_table.py -------------------------------------------------------------------------------- /server/db/models/__pycache__/conversation_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/__pycache__/conversation_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/models/__pycache__/knowledge_base_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/__pycache__/knowledge_base_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/models/__pycache__/knowledge_file_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/__pycache__/knowledge_file_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/models/__pycache__/message_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/__pycache__/message_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/models/__pycache__/user_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/__pycache__/user_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/models/conversation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/conversation_model.py -------------------------------------------------------------------------------- /server/db/models/knowledge_base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/knowledge_base_model.py -------------------------------------------------------------------------------- /server/db/models/knowledge_file_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/knowledge_file_model.py -------------------------------------------------------------------------------- /server/db/models/message_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/message_model.py -------------------------------------------------------------------------------- /server/db/models/user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/models/user_model.py -------------------------------------------------------------------------------- /server/db/repository/__init__.py: -------------------------------------------------------------------------------- 1 | from .message_repository import * 2 | -------------------------------------------------------------------------------- /server/db/repository/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/conversation_repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/conversation_repository.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/knowledge_base_repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/knowledge_base_repository.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/knowledge_file_repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/knowledge_file_repository.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/message_repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/message_repository.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/user_repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/user_repository.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /server/db/repository/conversation_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/conversation_repository.py -------------------------------------------------------------------------------- /server/db/repository/knowledge_base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/knowledge_base_repository.py -------------------------------------------------------------------------------- /server/db/repository/knowledge_file_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/knowledge_file_repository.py -------------------------------------------------------------------------------- /server/db/repository/message_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/message_repository.py -------------------------------------------------------------------------------- /server/db/repository/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/user_repository.py -------------------------------------------------------------------------------- /server/db/repository/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/repository/utils.py -------------------------------------------------------------------------------- /server/db/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/db/session.py -------------------------------------------------------------------------------- /server/embeddings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/embeddings_api.py -------------------------------------------------------------------------------- /server/knowledge_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/knowledge_base/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/__pycache__/kb_doc_api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/__pycache__/kb_doc_api.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/init_vs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/init_vs.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/__pycache__/base.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/__pycache__/base.cpython-311.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/__pycache__/faiss_cache.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/__pycache__/faiss_cache.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/__pycache__/faiss_cache.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/__pycache__/faiss_cache.cpython-311.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/base.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_cache/faiss_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_cache/faiss_cache.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_doc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_doc_api.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/__pycache__/faiss_kb_service.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/__pycache__/faiss_kb_service.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/__pycache__/milvus_kb_service.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/__pycache__/milvus_kb_service.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/base.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/faiss_kb_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/faiss_kb_service.py -------------------------------------------------------------------------------- /server/knowledge_base/kb_service/milvus_kb_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/kb_service/milvus_kb_service.py -------------------------------------------------------------------------------- /server/knowledge_base/model/__pycache__/kb_document_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/model/__pycache__/kb_document_model.cpython-310.pyc -------------------------------------------------------------------------------- /server/knowledge_base/model/__pycache__/kb_document_model.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/model/__pycache__/kb_document_model.cpython-311.pyc -------------------------------------------------------------------------------- /server/knowledge_base/model/kb_document_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/model/kb_document_model.py -------------------------------------------------------------------------------- /server/knowledge_base/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/knowledge_base/utils.py -------------------------------------------------------------------------------- /server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/main.py -------------------------------------------------------------------------------- /server/memory/__pycache__/conversation_db_buffer_memory.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/memory/__pycache__/conversation_db_buffer_memory.cpython-310.pyc -------------------------------------------------------------------------------- /server/memory/conversation_db_buffer_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/memory/conversation_db_buffer_memory.py -------------------------------------------------------------------------------- /server/minx_chat_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/minx_chat_openai.py -------------------------------------------------------------------------------- /server/model_workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/__init__.py -------------------------------------------------------------------------------- /server/model_workers/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /server/model_workers/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /server/model_workers/__pycache__/zhipu.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/__pycache__/zhipu.cpython-310.pyc -------------------------------------------------------------------------------- /server/model_workers/__pycache__/zhipu.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/__pycache__/zhipu.cpython-311.pyc -------------------------------------------------------------------------------- /server/model_workers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/base.py -------------------------------------------------------------------------------- /server/model_workers/zhipu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/model_workers/zhipu.py -------------------------------------------------------------------------------- /server/reranker/__pycache__/reranker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/reranker/__pycache__/reranker.cpython-310.pyc -------------------------------------------------------------------------------- /server/reranker/__pycache__/search_reranker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/reranker/__pycache__/search_reranker.cpython-310.pyc -------------------------------------------------------------------------------- /server/reranker/reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/reranker/reranker.py -------------------------------------------------------------------------------- /server/reranker/search_reranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/reranker/search_reranker.py -------------------------------------------------------------------------------- /server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/server/utils.py -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/startup.py -------------------------------------------------------------------------------- /static/__MACOSX/._dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/._dist -------------------------------------------------------------------------------- /static/__MACOSX/dist/._app-loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/._app-loading.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/._favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/._favicon.ico -------------------------------------------------------------------------------- /static/__MACOSX/dist/._favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/._favicon.png -------------------------------------------------------------------------------- /static/__MACOSX/dist/._index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/._index.html -------------------------------------------------------------------------------- /static/__MACOSX/dist/._static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/._static -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._403-DGkE3wGt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._403-DGkE3wGt.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._404-DfhRmA2l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._404-DfhRmA2l.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._ErrorPageLayout-CGFdhjj_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._ErrorPageLayout-CGFdhjj_.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._ErrorPageLayout-zOAQY_Gs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._ErrorPageLayout-zOAQY_Gs.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._SwitchRoles-CoSs55AH.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._SwitchRoles-CoSs55AH.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._SwitchRoles-O7Gv-uJI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._SwitchRoles-O7Gv-uJI.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._chatHistory-D8um-KwZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._chatHistory-D8um-KwZ.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._directive-BUNB06L6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._directive-BUNB06L6.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._directive-NEoCH_vr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._directive-NEoCH_vr.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._element-jUUjv72Y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._element-jUUjv72Y.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._face-CR2u4JKU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._face-CR2u4JKU.png -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._iconfont.1716777871692-D4HyIDhF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._iconfont.1716777871692-D4HyIDhF.woff -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._iconfont.1716777871692-DDhY9P9i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._iconfont.1716777871692-DDhY9P9i.ttf -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-9m_pB3jU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-9m_pB3jU.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-BM0Sj0Wq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-BM0Sj0Wq.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-BOxuAFt1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-BOxuAFt1.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-BPhoVeuT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-BPhoVeuT.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-BRmddp6Q.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-BRmddp6Q.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-BTuCLTzG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-BTuCLTzG.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Bhz4GkvR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Bhz4GkvR.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-CZ2C-tJM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-CZ2C-tJM.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Can5N1im.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Can5N1im.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Cuci-wC0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Cuci-wC0.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-CwQeRnkK.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-CwQeRnkK.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-D06GKQy1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-D06GKQy1.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-D5jwABa5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-D5jwABa5.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-D6rBnSSJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-D6rBnSSJ.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-DN4xFmAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-DN4xFmAT.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Da4lwYC1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Da4lwYC1.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Db28Njib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Db28Njib.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-DjCGOFdv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-DjCGOFdv.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-DmS5ZuTx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-DmS5ZuTx.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Dzv453Ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Dzv453Ar.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-Nbpt45W3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-Nbpt45W3.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-YEeDdOYi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-YEeDdOYi.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-fkgbvabe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-fkgbvabe.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-g7R_tYxJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-g7R_tYxJ.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-omA-iFTI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-omA-iFTI.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-tavtFK3w.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-tavtFK3w.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-u3hIk7lp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-u3hIk7lp.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-uz44_C95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-uz44_C95.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index-yWD1c-VP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index-yWD1c-VP.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._index.vue_vue_type_script_setup_true_lang-CSuimxwc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._index.vue_vue_type_script_setup_true_lang-CSuimxwc.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._logo-BY3URNHQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._logo-BY3URNHQ.png -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._logo-sSbhS2d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._logo-sSbhS2d3.jpg -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._logo-text-1-CHuEm79x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._logo-text-1-CHuEm79x.png -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._logo-text-2-CVewf8RJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._logo-text-2-CVewf8RJ.png -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._page-BBYT-JQ4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._page-BBYT-JQ4.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._page-D_JSdlLP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._page-D_JSdlLP.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._use-fetch-select-CZWdCyZv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._use-fetch-select-CZWdCyZv.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._use-fullscreen-loading-B6SweF--.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._use-fullscreen-loading-B6SweF--.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._use-watermark-C8yPoY9R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._use-watermark-C8yPoY9R.css -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._use-watermark-DudJ6gFB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._use-watermark-DudJ6gFB.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._useWatermark-BrY0Mnwc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._useWatermark-BrY0Mnwc.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._vue-39WfQX0x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._vue-39WfQX0x.js -------------------------------------------------------------------------------- /static/__MACOSX/dist/static/._vxe-DW97H3iJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/__MACOSX/dist/static/._vxe-DW97H3iJ.js -------------------------------------------------------------------------------- /static/bak/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/bak/dist.zip -------------------------------------------------------------------------------- /static/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist.zip -------------------------------------------------------------------------------- /static/dist/app-loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/app-loading.css -------------------------------------------------------------------------------- /static/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/favicon.ico -------------------------------------------------------------------------------- /static/dist/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/favicon.png -------------------------------------------------------------------------------- /static/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/index.html -------------------------------------------------------------------------------- /static/dist/static/403-DGkE3wGt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/403-DGkE3wGt.js -------------------------------------------------------------------------------- /static/dist/static/404-DfhRmA2l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/404-DfhRmA2l.js -------------------------------------------------------------------------------- /static/dist/static/ErrorPageLayout-CGFdhjj_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/ErrorPageLayout-CGFdhjj_.js -------------------------------------------------------------------------------- /static/dist/static/ErrorPageLayout-zOAQY_Gs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/ErrorPageLayout-zOAQY_Gs.css -------------------------------------------------------------------------------- /static/dist/static/SwitchRoles-CoSs55AH.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/SwitchRoles-CoSs55AH.css -------------------------------------------------------------------------------- /static/dist/static/SwitchRoles-O7Gv-uJI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/SwitchRoles-O7Gv-uJI.js -------------------------------------------------------------------------------- /static/dist/static/chatHistory-D8um-KwZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/chatHistory-D8um-KwZ.js -------------------------------------------------------------------------------- /static/dist/static/directive-BUNB06L6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/directive-BUNB06L6.js -------------------------------------------------------------------------------- /static/dist/static/directive-NEoCH_vr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/directive-NEoCH_vr.css -------------------------------------------------------------------------------- /static/dist/static/element-jUUjv72Y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/element-jUUjv72Y.js -------------------------------------------------------------------------------- /static/dist/static/face-CR2u4JKU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/face-CR2u4JKU.png -------------------------------------------------------------------------------- /static/dist/static/iconfont.1716777871692-D4HyIDhF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/iconfont.1716777871692-D4HyIDhF.woff -------------------------------------------------------------------------------- /static/dist/static/iconfont.1716777871692-DDhY9P9i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/iconfont.1716777871692-DDhY9P9i.ttf -------------------------------------------------------------------------------- /static/dist/static/index-9m_pB3jU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-9m_pB3jU.css -------------------------------------------------------------------------------- /static/dist/static/index-BM0Sj0Wq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-BM0Sj0Wq.js -------------------------------------------------------------------------------- /static/dist/static/index-BOxuAFt1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-BOxuAFt1.css -------------------------------------------------------------------------------- /static/dist/static/index-BPhoVeuT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-BPhoVeuT.js -------------------------------------------------------------------------------- /static/dist/static/index-BRmddp6Q.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-BRmddp6Q.css -------------------------------------------------------------------------------- /static/dist/static/index-BTuCLTzG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-BTuCLTzG.js -------------------------------------------------------------------------------- /static/dist/static/index-Bhz4GkvR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Bhz4GkvR.js -------------------------------------------------------------------------------- /static/dist/static/index-CZ2C-tJM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-CZ2C-tJM.js -------------------------------------------------------------------------------- /static/dist/static/index-Can5N1im.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Can5N1im.css -------------------------------------------------------------------------------- /static/dist/static/index-Cuci-wC0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Cuci-wC0.js -------------------------------------------------------------------------------- /static/dist/static/index-CwQeRnkK.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-CwQeRnkK.css -------------------------------------------------------------------------------- /static/dist/static/index-D06GKQy1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-D06GKQy1.css -------------------------------------------------------------------------------- /static/dist/static/index-D5jwABa5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-D5jwABa5.js -------------------------------------------------------------------------------- /static/dist/static/index-D6rBnSSJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-D6rBnSSJ.js -------------------------------------------------------------------------------- /static/dist/static/index-DN4xFmAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-DN4xFmAT.js -------------------------------------------------------------------------------- /static/dist/static/index-Da4lwYC1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Da4lwYC1.css -------------------------------------------------------------------------------- /static/dist/static/index-Db28Njib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Db28Njib.js -------------------------------------------------------------------------------- /static/dist/static/index-DjCGOFdv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-DjCGOFdv.js -------------------------------------------------------------------------------- /static/dist/static/index-DmS5ZuTx.css: -------------------------------------------------------------------------------- 1 | .el-link[data-v-6b5ec9cb]{font-size:18px} 2 | -------------------------------------------------------------------------------- /static/dist/static/index-Dzv453Ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Dzv453Ar.js -------------------------------------------------------------------------------- /static/dist/static/index-Nbpt45W3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-Nbpt45W3.js -------------------------------------------------------------------------------- /static/dist/static/index-YEeDdOYi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-YEeDdOYi.css -------------------------------------------------------------------------------- /static/dist/static/index-fkgbvabe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-fkgbvabe.js -------------------------------------------------------------------------------- /static/dist/static/index-g7R_tYxJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-g7R_tYxJ.js -------------------------------------------------------------------------------- /static/dist/static/index-omA-iFTI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-omA-iFTI.js -------------------------------------------------------------------------------- /static/dist/static/index-tavtFK3w.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-tavtFK3w.css -------------------------------------------------------------------------------- /static/dist/static/index-u3hIk7lp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-u3hIk7lp.js -------------------------------------------------------------------------------- /static/dist/static/index-uz44_C95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-uz44_C95.js -------------------------------------------------------------------------------- /static/dist/static/index-yWD1c-VP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index-yWD1c-VP.js -------------------------------------------------------------------------------- /static/dist/static/index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index.vue_vue_type_script_setup_true_lang-BK1-d4qU.js -------------------------------------------------------------------------------- /static/dist/static/index.vue_vue_type_script_setup_true_lang-CSuimxwc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/index.vue_vue_type_script_setup_true_lang-CSuimxwc.js -------------------------------------------------------------------------------- /static/dist/static/logo-BY3URNHQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/logo-BY3URNHQ.png -------------------------------------------------------------------------------- /static/dist/static/logo-sSbhS2d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/logo-sSbhS2d3.jpg -------------------------------------------------------------------------------- /static/dist/static/logo-text-1-CHuEm79x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/logo-text-1-CHuEm79x.png -------------------------------------------------------------------------------- /static/dist/static/logo-text-2-CVewf8RJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/logo-text-2-CVewf8RJ.png -------------------------------------------------------------------------------- /static/dist/static/page-BBYT-JQ4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/page-BBYT-JQ4.js -------------------------------------------------------------------------------- /static/dist/static/page-D_JSdlLP.css: -------------------------------------------------------------------------------- 1 | .el-tag[data-v-70c1e438]{margin-top:15px} 2 | -------------------------------------------------------------------------------- /static/dist/static/use-fetch-select-CZWdCyZv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/use-fetch-select-CZWdCyZv.js -------------------------------------------------------------------------------- /static/dist/static/use-fullscreen-loading-B6SweF--.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/use-fullscreen-loading-B6SweF--.js -------------------------------------------------------------------------------- /static/dist/static/use-watermark-C8yPoY9R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/use-watermark-C8yPoY9R.css -------------------------------------------------------------------------------- /static/dist/static/use-watermark-DudJ6gFB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/use-watermark-DudJ6gFB.js -------------------------------------------------------------------------------- /static/dist/static/useWatermark-BrY0Mnwc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/useWatermark-BrY0Mnwc.js -------------------------------------------------------------------------------- /static/dist/static/vue-39WfQX0x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/vue-39WfQX0x.js -------------------------------------------------------------------------------- /static/dist/static/vxe-DW97H3iJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/static/dist/static/vxe-DW97H3iJ.js -------------------------------------------------------------------------------- /text_splitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__init__.py -------------------------------------------------------------------------------- /text_splitter/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /text_splitter/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /text_splitter/__pycache__/chinese_recursive_text_splitter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/chinese_recursive_text_splitter.cpython-310.pyc -------------------------------------------------------------------------------- /text_splitter/__pycache__/chinese_recursive_text_splitter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/chinese_recursive_text_splitter.cpython-311.pyc -------------------------------------------------------------------------------- /text_splitter/__pycache__/zh_title_enhance.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/zh_title_enhance.cpython-310.pyc -------------------------------------------------------------------------------- /text_splitter/__pycache__/zh_title_enhance.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/__pycache__/zh_title_enhance.cpython-311.pyc -------------------------------------------------------------------------------- /text_splitter/chinese_recursive_text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/chinese_recursive_text_splitter.py -------------------------------------------------------------------------------- /text_splitter/zh_title_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/fufan-chat-api/HEAD/text_splitter/zh_title_enhance.py --------------------------------------------------------------------------------