Getting Started with VeloxQ
An introduction to our physics-inspired QUBO solver
Open Source SDK
VeloxQ SDK on Github
VeloxQ SDK is the official Python client for working with the VeloxQ platform, designed to let users upload and solve optimization problems through a configurable API with a user-friendly workflow. The repository presents it as a Python 3.8+ package and introduces a quickstart path built around authentication plus a simple
In the repository itself, the main elements are the veloxq_sdk package (the actual client library), an examples directory (practical usage examples), a wiki directory (documentation sources), CI workflow files under
In the repo you will find full working model of the SDK: configuration (including
You can thinkf of the repository as both: a software package and a practical implementation guide for integrating VeloxQ into prototype or production optimization pipelines.
solver.sample(...) call for first runs.In the repository itself, the main elements are the veloxq_sdk package (the actual client library), an examples directory (practical usage examples), a wiki directory (documentation sources), CI workflow files under
.github/workflows, and core project files such as README.md and pyproject.toml. In the repo you will find full working model of the SDK: configuration (including
VELOX_TOKEN), problem submission using multiple input types (lists, NumPy arrays, sparse dictionaries, dimod BQMs, files, and instance dictionaries), and the broader workflow concepts such as Files, Jobs, and results returned as a VeloxSampleSet.You can thinkf of the repository as both: a software package and a practical implementation guide for integrating VeloxQ into prototype or production optimization pipelines.