├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE ├── README.md ├── README.zh-CN.md ├── app └── v1 │ ├── chat │ └── completions │ │ └── route.ts │ └── models │ └── route.ts ├── deploy └── azure-deploy.json ├── docs └── images │ └── resource-and-model.jpg ├── e2e ├── chatbot-ui │ └── docker-compose.yml ├── chatgpt-lite │ └── docker-compose.yml ├── chatgpt-minimal │ └── docker-compose.yml ├── chatgpt-next-web │ └── docker-compose.yml └── chatgpt-web │ └── docker-compose.yml ├── next.config.js ├── package.json └── tsconfig.json /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /app/v1/chat/completions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/app/v1/chat/completions/route.ts -------------------------------------------------------------------------------- /app/v1/models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/app/v1/models/route.ts -------------------------------------------------------------------------------- /deploy/azure-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/deploy/azure-deploy.json -------------------------------------------------------------------------------- /docs/images/resource-and-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/docs/images/resource-and-model.jpg -------------------------------------------------------------------------------- /e2e/chatbot-ui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/e2e/chatbot-ui/docker-compose.yml -------------------------------------------------------------------------------- /e2e/chatgpt-lite/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/e2e/chatgpt-lite/docker-compose.yml -------------------------------------------------------------------------------- /e2e/chatgpt-minimal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/e2e/chatgpt-minimal/docker-compose.yml -------------------------------------------------------------------------------- /e2e/chatgpt-next-web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/e2e/chatgpt-next-web/docker-compose.yml -------------------------------------------------------------------------------- /e2e/chatgpt-web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/e2e/chatgpt-web/docker-compose.yml -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalaone/azure-openai-proxy/HEAD/tsconfig.json --------------------------------------------------------------------------------