├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── docker-compose.yml └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangarooking/fastgpt-dify-adapter/HEAD/requirements.txt --------------------------------------------------------------------------------