gitextract_clwri4nw/ ├── .clang-format ├── .github/ │ ├── actions/ │ │ ├── download-onnxruntime-linux.sh │ │ ├── download-onnxruntime-osx.sh │ │ └── download-onnxruntime-windows.sh │ ├── cache/ │ │ └── dependencies-apt/ │ │ └── .gitkeep │ ├── dependabot.yml │ └── workflows/ │ ├── cmake-linux.yml │ ├── cmake-macos.yml │ ├── cmake-windows.yml │ └── codeql.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake/ │ └── FindONNXRuntime.cmake ├── deploy/ │ ├── build-docker/ │ │ ├── README.md │ │ ├── VERSION │ │ ├── build.sh │ │ ├── docker-compose.yaml │ │ ├── docker-image-test.sh │ │ ├── download-onnxruntime.sh │ │ ├── linux-cpu.dockerfile │ │ ├── linux-cuda12.dockerfile │ │ └── linux-cuda13.dockerfile │ └── update-version.sh ├── docs/ │ ├── docker.md │ └── swagger/ │ ├── index.css │ ├── index.html │ ├── openapi.yaml │ ├── swagger-ui-bundle.js │ ├── swagger-ui-standalone-preset.js │ └── swagger-ui.css ├── download-onnxruntime-linux.sh ├── src/ │ ├── CMakeLists.txt │ ├── onnx/ │ │ ├── cuda/ │ │ │ ├── session_options.cpp │ │ │ └── session_options.hpp │ │ ├── execution/ │ │ │ ├── context.cpp │ │ │ └── input_value.cpp │ │ ├── providers.cpp │ │ ├── session.cpp │ │ ├── session_key.cpp │ │ ├── session_key_with_option.cpp │ │ ├── session_manager.cpp │ │ ├── value_info.cpp │ │ └── version.cpp │ ├── onnxruntime_server.hpp │ ├── standalone/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── model_bin_getter.hpp │ │ ├── standalone.cpp │ │ └── standalone.hpp │ ├── task/ │ │ ├── create_session.cpp │ │ ├── destroy_session.cpp │ │ ├── execute_session.cpp │ │ ├── get_session.cpp │ │ ├── list_session.cpp │ │ └── task.cpp │ ├── test/ │ │ ├── CMakeLists.txt │ │ ├── e2e/ │ │ │ ├── e2e_test_http_server.cpp │ │ │ ├── e2e_test_http_swagger.cpp │ │ │ ├── e2e_test_https_server.cpp │ │ │ └── e2e_test_tcp_server.cpp │ │ ├── test_common.hpp │ │ ├── test_lib_version.cpp │ │ └── unit/ │ │ ├── unit_test_context.cpp │ │ ├── unit_test_context_cuda.cpp │ │ └── unit_test_session.cpp │ ├── thread_pool.hpp │ ├── transport/ │ │ ├── http/ │ │ │ ├── http_server.cpp │ │ │ ├── http_server.hpp │ │ │ ├── http_session.cpp │ │ │ ├── http_session_base.cpp │ │ │ ├── https_server.cpp │ │ │ ├── https_session.cpp │ │ │ ├── swagger/ │ │ │ │ ├── document_bin_data.h │ │ │ │ ├── generate_swagger.sh │ │ │ │ ├── swagger_index_html.cpp │ │ │ │ └── swagger_openapi_yaml.cpp │ │ │ └── swagger_serve.cpp │ │ ├── server.cpp │ │ └── tcp/ │ │ ├── tcp_server.hpp │ │ └── tcp_session.cpp │ └── utils/ │ ├── aixlog.hpp │ ├── exceptions.hpp │ ├── json.hpp │ └── windows.h └── test/ ├── fixture/ │ ├── download-test-fixtures.sh │ └── sample/ │ ├── 1/ │ │ └── README.md │ └── 2/ │ └── README.md ├── http/ │ ├── http-client.env.json │ └── http_test.http ├── sample-onnx-generator/ │ ├── requirements.txt │ ├── sample-model1.py │ └── website_classification.py └── ssl/ ├── server-cert.pem ├── server-csr.pem └── server-key.pem