├── .env.json.example ├── .gitignore ├── LICENSE ├── README.md ├── imgs ├── add_bot.png ├── appid_secret.png ├── config.png ├── configure_url.png ├── encrypt_key_verification_token.png ├── start_server.png ├── sub.png └── test.png ├── process.py ├── requirements.txt └── start_server.py /.env.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/.env.json.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__ 3 | .env.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /imgs/add_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/add_bot.png -------------------------------------------------------------------------------- /imgs/appid_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/appid_secret.png -------------------------------------------------------------------------------- /imgs/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/config.png -------------------------------------------------------------------------------- /imgs/configure_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/configure_url.png -------------------------------------------------------------------------------- /imgs/encrypt_key_verification_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/encrypt_key_verification_token.png -------------------------------------------------------------------------------- /imgs/start_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/start_server.png -------------------------------------------------------------------------------- /imgs/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/sub.png -------------------------------------------------------------------------------- /imgs/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/imgs/test.png -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llmapi-io/feishu-chatbot/HEAD/start_server.py --------------------------------------------------------------------------------