[docs]classQIHybridBackend(QIBaseBackend):"""Used as a Qiskit backend for hybrid algorithms that are fully executed on the Quantum Inspire platform. Quantum hardware specifications are inferred from the backend type selected on submission. """def__init__(self,qi:QuantumInterface,**kwargs:Any):super().__init__(BackendType.model_validate(qi.backend_type),**kwargs)self._quantum_interface=qi