Hi,
while trying to debug API calls made to OpenAI APIs I discovered that the Python SDK is sending system info data to the server including :
- OS
- Arch
- Python runtime
- Python runtime version
…
For example :
headers: {
[...]
x-stainless-os: "MacOS"
accept-encoding: "gzip, deflate"
x-stainless-arch: "arm64"
x-stainless-lang: "python"
x-stainless-async: false
x-stainless-runtime: "CPython"
x-stainless-package-version: "1.12.0"
x-stainless-runtime-version: "3.11.7"
[...]
}
Is there an Opt-Out option to disable this behaviour ? Or maybe it is in the CGU of OpenAI APIs ?