qlro 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
qlro/__init__.py ADDED
@@ -0,0 +1,37 @@
1
+ """Qlro: the evaluation layer for quantum pilot decisions.
2
+
3
+ Primary use is as an importable library:
4
+
5
+ >>> from qiskit import QuantumCircuit
6
+ >>> import qlro
7
+ >>>
8
+ >>> qc = QuantumCircuit(4)
9
+ >>> qc.h(0); qc.cx(0, 1); qc.cx(1, 2); qc.cx(2, 3)
10
+ >>> qc.measure_all()
11
+ >>>
12
+ >>> result = qlro.recommend(qc, category="chemistry")
13
+ >>> result.primary
14
+ 'H2-2'
15
+ >>> result # auto-renders in Jupyter
16
+
17
+ See WCPP_SPEC.md and ROADMAP.md at the repo root for the full framework
18
+ and product context.
19
+ """
20
+
21
+ from qlro.public_api import (
22
+ CircuitInfo,
23
+ DeviceRanking,
24
+ Recommendation,
25
+ log_outcome,
26
+ recommend,
27
+ )
28
+ from qlro.scoring.priors import WorkloadCategory
29
+
30
+ __all__ = [
31
+ "recommend",
32
+ "log_outcome",
33
+ "Recommendation",
34
+ "DeviceRanking",
35
+ "CircuitInfo",
36
+ "WorkloadCategory",
37
+ ]