├── .DS_Store ├── .env.example ├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── .idea ├── .gitignore ├── AugmentWebviewStateStore.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── z-ai-proxy.iml ├── DOCKER.md ├── Dockerfile ├── README.md ├── __pycache__ ├── config.cpython-312.pyc ├── cookie_manager.cpython-312.pyc ├── main.cpython-312.pyc ├── models.cpython-312.pyc └── proxy_handler.cpython-312.pyc ├── config.py ├── cookie_manager.py ├── debug_connection.py ├── docker-compose.yml ├── main.py ├── models.py ├── nginx.conf ├── proxy_handler.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/AugmentWebviewStateStore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/AugmentWebviewStateStore.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/z-ai-proxy.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/.idea/z-ai-proxy.iml -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/__pycache__/config.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/cookie_manager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/__pycache__/cookie_manager.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/proxy_handler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/__pycache__/proxy_handler.cpython-312.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/config.py -------------------------------------------------------------------------------- /cookie_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/cookie_manager.py -------------------------------------------------------------------------------- /debug_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/debug_connection.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/models.py -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/nginx.conf -------------------------------------------------------------------------------- /proxy_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/proxy_handler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LargeCupPanda/Z2API/HEAD/requirements.txt --------------------------------------------------------------------------------