├── .gitignore ├── .streamlit └── config.toml ├── LICENSE ├── README.md ├── drpang_shipinhao.jpg ├── drpang_shipinhao2.jpg ├── memorybot.py ├── paypalqrcode.png ├── requirements.txt ├── sricon.png ├── wechatqrcode.jpg ├── wechatqrcode_kyle.JPG ├── wechatqrcode_kyle.jpg ├── wechatqrcode_leo.jpg └── zhifubaoqrcode_kyle.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/README.md -------------------------------------------------------------------------------- /drpang_shipinhao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/drpang_shipinhao.jpg -------------------------------------------------------------------------------- /drpang_shipinhao2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/drpang_shipinhao2.jpg -------------------------------------------------------------------------------- /memorybot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/memorybot.py -------------------------------------------------------------------------------- /paypalqrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/paypalqrcode.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | langchain 2 | streamlit 3 | openai==0.27.8 4 | -------------------------------------------------------------------------------- /sricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/sricon.png -------------------------------------------------------------------------------- /wechatqrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/wechatqrcode.jpg -------------------------------------------------------------------------------- /wechatqrcode_kyle.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/wechatqrcode_kyle.JPG -------------------------------------------------------------------------------- /wechatqrcode_kyle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/wechatqrcode_kyle.jpg -------------------------------------------------------------------------------- /wechatqrcode_leo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/wechatqrcode_leo.jpg -------------------------------------------------------------------------------- /zhifubaoqrcode_kyle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-usa/MemoryBot/HEAD/zhifubaoqrcode_kyle.jpg --------------------------------------------------------------------------------