[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@propertydefstatus(self)->BackendStatus:"""Return the backend status. Pending jobs is always 0. This information is currently not known. Returns: BackendStatus: the status of the backend. Pending jobs is always 0. """returnBackendStatus(backend_name=self._quantum_interface.backend_type.get("name","Name unknown"),backend_version="2.0",operational=True,pending_jobs=0,status_msg="online",)