├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── benchmark ├── __init__.py ├── asynchttpexecuter.py ├── bench.py ├── loadcmd.py ├── oairequester.py ├── oaitokenizer.py ├── ratelimiting.py ├── statsaggregator.py └── tokenizecmd.py ├── requirements.txt └── tests ├── __init__.py ├── asynchttpexecuter.py └── oairequester.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/asynchttpexecuter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/asynchttpexecuter.py -------------------------------------------------------------------------------- /benchmark/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/bench.py -------------------------------------------------------------------------------- /benchmark/loadcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/loadcmd.py -------------------------------------------------------------------------------- /benchmark/oairequester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/oairequester.py -------------------------------------------------------------------------------- /benchmark/oaitokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/oaitokenizer.py -------------------------------------------------------------------------------- /benchmark/ratelimiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/ratelimiting.py -------------------------------------------------------------------------------- /benchmark/statsaggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/statsaggregator.py -------------------------------------------------------------------------------- /benchmark/tokenizecmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/benchmark/tokenizecmd.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/asynchttpexecuter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/tests/asynchttpexecuter.py -------------------------------------------------------------------------------- /tests/oairequester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-openai-benchmark/HEAD/tests/oairequester.py --------------------------------------------------------------------------------