├── .dockerignore ├── .env.example ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_ZH.md ├── api └── poe_api.py ├── docker-compose.yml ├── main.py ├── requirements.txt ├── route ├── route_chat.py └── route_image.py ├── run.py ├── run.sh ├── test-api.http ├── test_function_call.py ├── test_reasoning_mode.py ├── test_reasoning_params.py └── util ├── token_utils.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/README_ZH.md -------------------------------------------------------------------------------- /api/poe_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/api/poe_api.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/requirements.txt -------------------------------------------------------------------------------- /route/route_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/route/route_chat.py -------------------------------------------------------------------------------- /route/route_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/route/route_image.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/run.sh -------------------------------------------------------------------------------- /test-api.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/test-api.http -------------------------------------------------------------------------------- /test_function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/test_function_call.py -------------------------------------------------------------------------------- /test_reasoning_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/test_reasoning_mode.py -------------------------------------------------------------------------------- /test_reasoning_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/test_reasoning_params.py -------------------------------------------------------------------------------- /util/token_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/util/token_utils.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyanbaby/poe-to-openai/HEAD/util/utils.py --------------------------------------------------------------------------------