├── .gitignore ├── Agent_tools ├── ChatGLM_agent.py ├── Qwen_agent.py └── Tools │ ├── Calculator.py │ └── Weather.py ├── LlamaIndex └── LlamaIndex.ipynb ├── README.md ├── Rubbish ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── kedatest.cpython-39.pyc │ └── testwordtoyuyin.cpython-39.pyc ├── chat_all_tasks.py ├── kedatest.py ├── result.mp3 └── testwordtoyuyin.py ├── Script ├── __init__.py └── chatglm3_api.py ├── Worker ├── ChatGLM3.py ├── Qwen.py └── utils.py ├── __init__.py ├── __pycache__ └── __init__.cpython-39.pyc ├── data ├── data.txt ├── img2txt.py ├── jsonl2txt.py ├── ocr.py ├── pdf2txt.py └── samples │ ├── ocr_test.jpg │ ├── ocr_test.pdf │ └── test.jsonl ├── requirements.txt ├── server ├── ChatGLM_llm.py └── Qwen_llm.py ├── tensorllm ├── README.md └── tensorrt_llm_cli_demo.py ├── vllm ├── README.md ├── offline.py └── requirements.txt └── 语音对讲 ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc └── shared_variable.cpython-39.pyc ├── da-bai-da-bai_en_windows_v2_2_0.ppn ├── here.mp3 ├── hey_siri.py └── result.mp3 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Agent_tools/ChatGLM_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Agent_tools/ChatGLM_agent.py -------------------------------------------------------------------------------- /Agent_tools/Qwen_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Agent_tools/Qwen_agent.py -------------------------------------------------------------------------------- /Agent_tools/Tools/Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Agent_tools/Tools/Calculator.py -------------------------------------------------------------------------------- /Agent_tools/Tools/Weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Agent_tools/Tools/Weather.py -------------------------------------------------------------------------------- /LlamaIndex/LlamaIndex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/LlamaIndex/LlamaIndex.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/README.md -------------------------------------------------------------------------------- /Rubbish/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Rubbish/__pycache__/kedatest.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/__pycache__/kedatest.cpython-39.pyc -------------------------------------------------------------------------------- /Rubbish/__pycache__/testwordtoyuyin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/__pycache__/testwordtoyuyin.cpython-39.pyc -------------------------------------------------------------------------------- /Rubbish/chat_all_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/chat_all_tasks.py -------------------------------------------------------------------------------- /Rubbish/kedatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/kedatest.py -------------------------------------------------------------------------------- /Rubbish/result.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/result.mp3 -------------------------------------------------------------------------------- /Rubbish/testwordtoyuyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Rubbish/testwordtoyuyin.py -------------------------------------------------------------------------------- /Script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Script/chatglm3_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Script/chatglm3_api.py -------------------------------------------------------------------------------- /Worker/ChatGLM3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Worker/ChatGLM3.py -------------------------------------------------------------------------------- /Worker/Qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Worker/Qwen.py -------------------------------------------------------------------------------- /Worker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/Worker/utils.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/data.txt -------------------------------------------------------------------------------- /data/img2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/img2txt.py -------------------------------------------------------------------------------- /data/jsonl2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/jsonl2txt.py -------------------------------------------------------------------------------- /data/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/ocr.py -------------------------------------------------------------------------------- /data/pdf2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/pdf2txt.py -------------------------------------------------------------------------------- /data/samples/ocr_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/samples/ocr_test.jpg -------------------------------------------------------------------------------- /data/samples/ocr_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/samples/ocr_test.pdf -------------------------------------------------------------------------------- /data/samples/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/data/samples/test.jsonl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/ChatGLM_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/server/ChatGLM_llm.py -------------------------------------------------------------------------------- /server/Qwen_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/server/Qwen_llm.py -------------------------------------------------------------------------------- /tensorllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/tensorllm/README.md -------------------------------------------------------------------------------- /tensorllm/tensorrt_llm_cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/tensorllm/tensorrt_llm_cli_demo.py -------------------------------------------------------------------------------- /vllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/vllm/README.md -------------------------------------------------------------------------------- /vllm/offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/vllm/offline.py -------------------------------------------------------------------------------- /vllm/requirements.txt: -------------------------------------------------------------------------------- 1 | vllm==0.2.7; sys_platform == "linux" -------------------------------------------------------------------------------- /语音对讲/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /语音对讲/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /语音对讲/__pycache__/shared_variable.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/__pycache__/shared_variable.cpython-39.pyc -------------------------------------------------------------------------------- /语音对讲/da-bai-da-bai_en_windows_v2_2_0.ppn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/da-bai-da-bai_en_windows_v2_2_0.ppn -------------------------------------------------------------------------------- /语音对讲/here.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/here.mp3 -------------------------------------------------------------------------------- /语音对讲/hey_siri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/hey_siri.py -------------------------------------------------------------------------------- /语音对讲/result.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangpang-xuan/Private-doctor-bot/HEAD/语音对讲/result.mp3 --------------------------------------------------------------------------------