Spaces:
Sleeping
Sleeping
File size: 32,914 Bytes
440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 89bf8af 1bb4678 440f6ef 1bb4678 440f6ef 1bb4678 440f6ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | # Path: QAgents-workflows/client/mcp_client.py
# Relations: Uses QuantumArchitect-MCP Gradio server (HuggingFace Space)
# Description: MCP client with fallback local implementations for missing endpoints
# Includes retry logic and extended timeouts for HF Space cold starts
"""
MCP Client: Connection to QuantumArchitect-MCP endpoints.
Provides both synchronous and async interfaces.
Available Gradio endpoints (as of latest scan):
- ui_create_circuit: Create circuit from template
- ui_validate_circuit: Validate QASM syntax
- ui_simulate_circuit: Simulate circuit
- ui_score_circuit: Score circuit complexity/fitness
Missing endpoints use local fallback implementations.
HuggingFace Space Considerations:
- Spaces go to sleep after inactivity (cold start takes 30-60s)
- Extended timeouts and retry logic handle this gracefully
- Local fallback used when MCP server is unreachable
"""
import requests
from typing import Any, Dict, Optional, List
from dataclasses import dataclass, field
from datetime import datetime
import json
import logging
import re
import time
import random
import math
import os
logger = logging.getLogger(__name__)
# Default MCP Server URL (HuggingFace Space)
DEFAULT_MCP_URL = "https://mcp-1st-birthday-quantumarchitect-mcp.hf.space"
# Timeout settings for HuggingFace Spaces
INITIAL_TIMEOUT = 90 # First request - allow cold start time
RESULT_TIMEOUT = 120 # Result retrieval - allow processing time
HEALTH_TIMEOUT = 30 # Health check timeout
MAX_RETRIES = 3 # Number of retries for transient failures
@dataclass
class MCPResponse:
"""Standardized response from MCP endpoints."""
success: bool
data: Any
endpoint: str
timestamp: datetime = field(default_factory=datetime.now)
error: Optional[str] = None
execution_time_ms: float = 0.0
is_fallback: bool = False # True if using local fallback
class QASMLocalAnalyzer:
"""Local QASM analysis for fallback when MCP endpoints unavailable."""
GATE_PATTERN = re.compile(
r'^(h|x|y|z|s|t|sdg|tdg|cx|cz|cy|swap|ccx|rz|rx|ry|u1|u2|u3|p|measure|barrier)\b',
re.IGNORECASE
)
@staticmethod
def parse_qasm(qasm_code: str) -> Dict[str, Any]:
"""Parse QASM code and extract structure."""
lines = [l.strip() for l in qasm_code.strip().split('\n')
if l.strip() and not l.strip().startswith('//')]
result = {
'openqasm_version': '2.0',
'includes': [],
'qregs': [],
'cregs': [],
'gates': [],
'num_qubits': 0,
'num_classical': 0
}
for line in lines:
if line.startswith('OPENQASM'):
result['openqasm_version'] = line.split()[1].rstrip(';')
elif line.startswith('include'):
result['includes'].append(line.split('"')[1] if '"' in line else line.split()[1])
elif line.startswith('qreg'):
match = re.search(r'qreg\s+(\w+)\[(\d+)\]', line)
if match:
result['qregs'].append({'name': match.group(1), 'size': int(match.group(2))})
result['num_qubits'] += int(match.group(2))
elif line.startswith('creg'):
match = re.search(r'creg\s+(\w+)\[(\d+)\]', line)
if match:
result['cregs'].append({'name': match.group(1), 'size': int(match.group(2))})
result['num_classical'] += int(match.group(2))
elif QASMLocalAnalyzer.GATE_PATTERN.match(line):
gate_name = line.split()[0].split('(')[0]
result['gates'].append({'gate': gate_name, 'raw': line.rstrip(';')})
return result
@staticmethod
def analyze_circuit(qasm_code: str) -> Dict[str, Any]:
"""Analyze circuit properties."""
parsed = QASMLocalAnalyzer.parse_qasm(qasm_code)
gates = parsed['gates']
gate_counts = {}
single_qubit_gates = 0
two_qubit_gates = 0
multi_qubit_gates = 0
measurement_count = 0
for g in gates:
gate = g['gate'].lower()
gate_counts[gate] = gate_counts.get(gate, 0) + 1
if gate == 'measure':
measurement_count += 1
elif gate in ['cx', 'cz', 'cy', 'swap']:
two_qubit_gates += 1
elif gate in ['ccx', 'cswap']:
multi_qubit_gates += 1
else:
single_qubit_gates += 1
# Estimate depth (simplified: assume all gates sequential)
depth = len([g for g in gates if g['gate'].lower() != 'measure'])
return {
'num_qubits': parsed['num_qubits'],
'num_classical_bits': parsed['num_classical'],
'depth': depth,
'gate_count': len(gates),
'gate_breakdown': gate_counts,
'single_qubit_gates': single_qubit_gates,
'two_qubit_gates': two_qubit_gates,
'multi_qubit_gates': multi_qubit_gates,
'measurements': measurement_count
}
@staticmethod
def get_depth(qasm_code: str) -> int:
"""Get circuit depth."""
analysis = QASMLocalAnalyzer.analyze_circuit(qasm_code)
return analysis['depth']
@staticmethod
def calculate_complexity(qasm_code: str) -> Dict[str, Any]:
"""Calculate complexity score."""
analysis = QASMLocalAnalyzer.analyze_circuit(qasm_code)
# Scoring formula
depth_score = min(analysis['depth'] / 50.0, 1.0) * 30
gate_score = min(analysis['gate_count'] / 100.0, 1.0) * 30
two_q_score = min(analysis['two_qubit_gates'] / 20.0, 1.0) * 25
qubit_score = min(analysis['num_qubits'] / 10.0, 1.0) * 15
total = depth_score + gate_score + two_q_score + qubit_score
return {
'complexity_score': round(total, 2),
'depth_contribution': round(depth_score, 2),
'gate_contribution': round(gate_score, 2),
'entanglement_contribution': round(two_q_score, 2),
'qubit_contribution': round(qubit_score, 2),
'raw_metrics': analysis
}
@staticmethod
def validate_syntax(qasm_code: str) -> Dict[str, Any]:
"""Validate QASM syntax."""
errors = []
warnings = []
lines = qasm_code.strip().split('\n')
has_openqasm = False
has_qreg = False
for i, line in enumerate(lines, 1):
line = line.strip()
if not line or line.startswith('//'):
continue
if line.startswith('OPENQASM'):
has_openqasm = True
elif line.startswith('qreg'):
has_qreg = True
elif not line.startswith(('include', 'creg', 'barrier', 'measure', 'OPENQASM', 'qreg')):
# Check for valid gate
if not QASMLocalAnalyzer.GATE_PATTERN.match(line):
if line and not line.endswith(';'):
warnings.append(f"Line {i}: Missing semicolon")
if not has_openqasm:
errors.append("Missing OPENQASM version declaration")
if not has_qreg:
errors.append("No quantum register (qreg) defined")
return {
'valid': len(errors) == 0,
'errors': errors,
'warnings': warnings,
'line_count': len(lines)
}
@staticmethod
def calculate_hardware_fitness(qasm_code: str, hardware: str = "ibm_brisbane") -> Dict[str, Any]:
"""Calculate hardware fitness score."""
analysis = QASMLocalAnalyzer.analyze_circuit(qasm_code)
# Hardware profiles (simplified)
profiles = {
'ibm_brisbane': {'max_qubits': 127, 'connectivity': 'heavy-hex', 'two_q_error': 0.01},
'ibm_sherbrooke': {'max_qubits': 127, 'connectivity': 'heavy-hex', 'two_q_error': 0.008},
'rigetti_aspen': {'max_qubits': 80, 'connectivity': 'octagonal', 'two_q_error': 0.02},
'ionq_harmony': {'max_qubits': 11, 'connectivity': 'all-to-all', 'two_q_error': 0.005}
}
profile = profiles.get(hardware, profiles['ibm_brisbane'])
# Calculate fitness
qubit_fit = 100 if analysis['num_qubits'] <= profile['max_qubits'] else 50
depth_penalty = min(analysis['depth'] * 2, 30)
two_q_penalty = analysis['two_qubit_gates'] * profile['two_q_error'] * 100
fitness = max(0, qubit_fit - depth_penalty - two_q_penalty)
return {
'fitness_score': round(fitness, 2),
'hardware': hardware,
'qubit_fit': qubit_fit,
'depth_penalty': round(depth_penalty, 2),
'error_penalty': round(two_q_penalty, 2),
'recommendation': 'suitable' if fitness > 70 else 'marginal' if fitness > 40 else 'poor'
}
class MCPClient:
"""
Client for QuantumArchitect-MCP server.
Wraps MCP endpoints with fallback to local implementations.
Primary endpoints (from Gradio):
- ui_create_circuit
- ui_validate_circuit
- ui_simulate_circuit
- ui_score_circuit
Missing endpoints use QASMLocalAnalyzer for fallback.
Features:
- Extended timeouts for HuggingFace Space cold starts
- Automatic retry with exponential backoff
- Server warm-up before first request
- Graceful fallback to local implementations
"""
def __init__(self, base_url: str = None):
if base_url is None:
base_url = os.environ.get("MCP_SERVER_URL", DEFAULT_MCP_URL)
self.base_url = base_url.rstrip("/")
self.session = requests.Session()
self._connected = False
self._analyzer = QASMLocalAnalyzer()
self._server_warmed = False
logger.info(f"MCPClient initialized with base_url: {self.base_url}")
def warm_up_server(self) -> bool:
"""
Wake up HuggingFace Space before making requests.
Spaces go to sleep after inactivity and need time to start.
Returns:
True if server is warmed up and ready
"""
if self._server_warmed:
return True
logger.info(f"Warming up MCP server at {self.base_url}...")
for attempt in range(MAX_RETRIES):
try:
# Simple GET to wake up the server
response = self.session.get(
f"{self.base_url}/",
timeout=INITIAL_TIMEOUT
)
if response.status_code == 200:
self._server_warmed = True
self._connected = True
logger.info("MCP server is ready")
return True
except requests.exceptions.Timeout:
logger.warning(f"Warm-up attempt {attempt + 1}/{MAX_RETRIES} timed out, retrying...")
except requests.exceptions.ConnectionError as e:
logger.warning(f"Warm-up attempt {attempt + 1}/{MAX_RETRIES} connection error: {e}")
except Exception as e:
logger.warning(f"Warm-up attempt {attempt + 1}/{MAX_RETRIES} failed: {e}")
if attempt < MAX_RETRIES - 1:
wait_time = 2 ** attempt # 1s, 2s, 4s
time.sleep(wait_time)
logger.warning("Failed to warm up MCP server, will use local fallback")
return False
def _call(self, endpoint: str, **kwargs) -> MCPResponse:
"""Internal method to call MCP endpoints with retry logic."""
start = time.perf_counter()
last_error = None
for attempt in range(MAX_RETRIES):
try:
return self._call_once(endpoint, start, **kwargs)
except requests.exceptions.Timeout as e:
last_error = f"Timeout after {INITIAL_TIMEOUT}s"
logger.warning(f"MCP call {endpoint} attempt {attempt + 1}/{MAX_RETRIES} timed out")
except requests.exceptions.ConnectionError as e:
last_error = f"Connection error: {e}"
logger.warning(f"MCP call {endpoint} attempt {attempt + 1}/{MAX_RETRIES} connection error")
except Exception as e:
last_error = str(e)
logger.warning(f"MCP call {endpoint} attempt {attempt + 1}/{MAX_RETRIES} failed: {e}")
if attempt < MAX_RETRIES - 1:
wait_time = 2 ** attempt # Exponential backoff: 1s, 2s, 4s
time.sleep(wait_time)
# All retries failed
elapsed = (time.perf_counter() - start) * 1000
logger.error(f"MCP call {endpoint} failed after {MAX_RETRIES} attempts: {last_error}")
return MCPResponse(
success=False,
data=None,
endpoint=endpoint,
error=last_error,
execution_time_ms=elapsed
)
def _call_once(self, endpoint: str, start: float, **kwargs) -> MCPResponse:
"""Single attempt to call an MCP endpoint."""
url = f"{self.base_url}/gradio_api/call/{endpoint}"
payload = {"data": list(kwargs.values()) if kwargs else []}
logger.debug(f"Calling MCP endpoint: {url}")
response = self.session.post(url, json=payload, timeout=INITIAL_TIMEOUT)
response.raise_for_status()
result = response.json()
event_id = result.get("event_id")
if event_id:
result_url = f"{self.base_url}/gradio_api/call/{endpoint}/{event_id}"
result_response = self.session.get(result_url, timeout=RESULT_TIMEOUT)
lines = result_response.text.strip().split("\n")
for line in lines:
if line.startswith("data:"):
data = json.loads(line[5:].strip())
elapsed = (time.perf_counter() - start) * 1000
return MCPResponse(
success=True,
data=data[0] if isinstance(data, list) and len(data) == 1 else data,
endpoint=endpoint,
execution_time_ms=elapsed
)
elapsed = (time.perf_counter() - start) * 1000
return MCPResponse(
success=True,
data=result,
endpoint=endpoint,
execution_time_ms=elapsed
)
def _fallback_response(self, endpoint: str, data: Any, start_time: float) -> MCPResponse:
"""Create a fallback response using local implementation."""
elapsed = (time.perf_counter() - start_time) * 1000
return MCPResponse(
success=True,
data=data,
endpoint=f"{endpoint}(fallback)",
execution_time_ms=elapsed,
is_fallback=True
)
def health_check(self) -> bool:
"""Check if MCP server is reachable."""
try:
response = self.session.get(f"{self.base_url}/", timeout=HEALTH_TIMEOUT)
self._connected = response.status_code == 200
return self._connected
except requests.exceptions.Timeout:
logger.warning(f"Health check timed out after {HEALTH_TIMEOUT}s")
self._connected = False
return False
except Exception as e:
logger.warning(f"Health check failed: {e}")
self._connected = False
return False
# ===== Circuit Creation Endpoints =====
def create_circuit_from_template(self, template_name: str, num_qubits: int = 2) -> MCPResponse:
"""Create a circuit from a predefined template.
Maps to ui_create_circuit endpoint in Gradio."""
return self._call("ui_create_circuit", template=template_name, qubits=num_qubits, params="{}")
def generate_random_circuit(self, num_qubits: int = 3, depth: int = 5,
gate_set: str = "h,cx,rz") -> MCPResponse:
"""Generate a random quantum circuit. Uses local fallback."""
start = time.perf_counter()
gates = gate_set.split(',')
qasm_lines = [
'OPENQASM 2.0;',
'include "qelib1.inc";',
f'qreg q[{num_qubits}];',
f'creg c[{num_qubits}];'
]
for _ in range(depth):
gate = random.choice(gates)
if gate in ['h', 'x', 'y', 'z', 's', 't']:
q = random.randint(0, num_qubits - 1)
qasm_lines.append(f'{gate} q[{q}];')
elif gate in ['cx', 'cz']:
if num_qubits >= 2:
q1 = random.randint(0, num_qubits - 1)
q2 = random.randint(0, num_qubits - 1)
while q2 == q1:
q2 = random.randint(0, num_qubits - 1)
qasm_lines.append(f'{gate} q[{q1}], q[{q2}];')
elif gate in ['rz', 'rx', 'ry']:
q = random.randint(0, num_qubits - 1)
angle = round(random.uniform(0, 2 * math.pi), 4)
qasm_lines.append(f'{gate}({angle}) q[{q}];')
qasm_lines.append(f'measure q -> c;')
qasm_code = '\n'.join(qasm_lines)
return self._fallback_response("generate_random_circuit", {'qasm': qasm_code}, start)
def generate_circuit_from_description(self, description: str) -> MCPResponse:
"""Generate circuit from natural language description.
Uses ui_create_circuit with best-matching template."""
desc_lower = description.lower()
if 'entangle' in desc_lower or 'bell' in desc_lower:
template = 'bell_state'
elif 'ghz' in desc_lower:
template = 'ghz_state'
elif 'superposition' in desc_lower:
template = 'superposition'
elif 'qft' in desc_lower or 'fourier' in desc_lower:
template = 'qft'
elif 'grover' in desc_lower or 'search' in desc_lower:
template = 'grover'
elif 'vqe' in desc_lower or 'variational' in desc_lower:
template = 'vqe'
else:
template = 'bell_state'
return self._call("ui_create_circuit", template=template, qubits=2, params="{}")
# ===== Parsing & Analysis Endpoints (Fallback) =====
def parse_qasm(self, qasm_code: str) -> MCPResponse:
"""Parse OpenQASM code into circuit structure. Uses local fallback."""
start = time.perf_counter()
parsed = self._analyzer.parse_qasm(qasm_code)
return self._fallback_response("parse_qasm", parsed, start)
def analyze_circuit(self, qasm_code: str) -> MCPResponse:
"""Analyze circuit properties (depth, gates, etc.). Uses local fallback."""
start = time.perf_counter()
analysis = self._analyzer.analyze_circuit(qasm_code)
return self._fallback_response("analyze_circuit", analysis, start)
def get_circuit_depth(self, qasm_code: str) -> MCPResponse:
"""Get the depth of a circuit. Uses local fallback."""
start = time.perf_counter()
depth = self._analyzer.get_depth(qasm_code)
return self._fallback_response("get_circuit_depth", {'depth': depth}, start)
# ===== Validation Endpoints =====
def validate_syntax(self, qasm_code: str, use_local_first: bool = True) -> MCPResponse:
"""
Validate QASM syntax.
Args:
qasm_code: The QASM code to validate
use_local_first: If True, use fast local validation first
Returns:
Validation result with any syntax errors
"""
# Try local validation first (fast, no network)
if use_local_first:
start = time.perf_counter()
local_result = self._analyzer.validate_syntax(qasm_code)
if local_result['valid']:
return self._fallback_response("validate_syntax", local_result, start)
# If local validation found errors, still return them quickly
return self._fallback_response("validate_syntax", local_result, start)
# Use MCP server for full validation
return self._call("ui_validate_circuit", qasm=qasm_code, hardware="")
def check_connectivity(self, qasm_code: str, hardware: str = "ibm_brisbane") -> MCPResponse:
"""Check if circuit respects hardware connectivity. Uses ui_validate_circuit."""
return self._call("ui_validate_circuit", qasm=qasm_code, hardware=hardware)
def verify_unitary(self, qasm_code: str) -> MCPResponse:
"""Verify circuit produces valid unitary. Uses local fallback."""
start = time.perf_counter()
validation = self._analyzer.validate_syntax(qasm_code)
result = {
'is_unitary': validation['valid'],
'errors': validation['errors'],
'note': 'Local validation - full unitary check requires simulation'
}
return self._fallback_response("verify_unitary", result, start)
# ===== Simulation Endpoints =====
def simulate_circuit(self, qasm_code: str, shots: int = 1024) -> MCPResponse:
"""Simulate circuit and get measurement results. Maps to ui_simulate_circuit."""
return self._call("ui_simulate_circuit", qasm=qasm_code, shots=shots)
def get_statevector(self, qasm_code: str) -> MCPResponse:
"""Get the statevector of a circuit. Uses ui_simulate_circuit."""
result = self._call("ui_simulate_circuit", qasm=qasm_code, shots=1)
if result.success and result.data:
result.data = {'statevector_hint': 'Use simulation results for state info'}
return result
def get_probabilities(self, qasm_code: str) -> MCPResponse:
"""Get probability distribution from circuit. Uses ui_simulate_circuit."""
result = self._call("ui_simulate_circuit", qasm=qasm_code, shots=1024)
if result.success and result.data:
# Extract probabilities from histogram
result.endpoint = "get_probabilities"
return result
# ===== Scoring Endpoints =====
def calculate_complexity_score(self, qasm_code: str) -> MCPResponse:
"""Calculate circuit complexity score. Tries ui_score_circuit then fallback."""
result = self._call("ui_score_circuit", qasm=qasm_code, hardware="ibm_brisbane")
if result.success:
return result
# Fallback to local
start = time.perf_counter()
complexity = self._analyzer.calculate_complexity(qasm_code)
return self._fallback_response("calculate_complexity_score", complexity, start)
def calculate_hardware_fitness(self, qasm_code: str, hardware: str = "ibm_brisbane") -> MCPResponse:
"""Calculate hardware fitness score. Tries ui_score_circuit then fallback."""
result = self._call("ui_score_circuit", qasm=qasm_code, hardware=hardware)
if result.success:
return result
# Fallback to local
start = time.perf_counter()
fitness = self._analyzer.calculate_hardware_fitness(qasm_code, hardware)
return self._fallback_response("calculate_hardware_fitness", fitness, start)
def calculate_expressibility(self, qasm_code: str) -> MCPResponse:
"""Calculate circuit expressibility. Uses local fallback."""
start = time.perf_counter()
analysis = self._analyzer.analyze_circuit(qasm_code)
# Expressibility heuristic based on gate diversity and depth
gate_types = len(analysis['gate_breakdown'])
depth_factor = min(analysis['depth'] / 20.0, 1.0)
entangle_factor = min(analysis['two_qubit_gates'] / 5.0, 1.0)
expressibility = (gate_types * 0.3 + depth_factor * 0.35 + entangle_factor * 0.35) * 100
result = {
'expressibility_score': round(expressibility, 2),
'gate_diversity': gate_types,
'depth_factor': round(depth_factor, 2),
'entanglement_factor': round(entangle_factor, 2)
}
return self._fallback_response("calculate_expressibility", result, start)
# ===== Resource Estimation Endpoints (Fallback) =====
def estimate_resources(self, qasm_code: str) -> MCPResponse:
"""Estimate resource requirements. Uses local fallback."""
start = time.perf_counter()
analysis = self._analyzer.analyze_circuit(qasm_code)
result = {
'qubits_required': analysis['num_qubits'],
'classical_bits': analysis['num_classical_bits'],
'gate_count': analysis['gate_count'],
'depth': analysis['depth'],
'estimated_runtime_ms': analysis['depth'] * 0.1, # Rough estimate
'memory_footprint_bytes': analysis['num_qubits'] * 16 * (2 ** analysis['num_qubits'])
}
return self._fallback_response("estimate_resources", result, start)
def estimate_noise(self, qasm_code: str, hardware: str = "ibm_brisbane") -> MCPResponse:
"""Estimate noise impact on circuit. Uses local fallback."""
start = time.perf_counter()
analysis = self._analyzer.analyze_circuit(qasm_code)
# Noise profiles (simplified)
noise_rates = {
'ibm_brisbane': {'single_q': 0.001, 'two_q': 0.01, 'readout': 0.02},
'ibm_sherbrooke': {'single_q': 0.0008, 'two_q': 0.008, 'readout': 0.015},
'rigetti_aspen': {'single_q': 0.002, 'two_q': 0.02, 'readout': 0.03},
'ionq_harmony': {'single_q': 0.0003, 'two_q': 0.005, 'readout': 0.01}
}
rates = noise_rates.get(hardware, noise_rates['ibm_brisbane'])
single_q_error = analysis['single_qubit_gates'] * rates['single_q']
two_q_error = analysis['two_qubit_gates'] * rates['two_q']
readout_error = analysis['measurements'] * rates['readout']
total_error = 1 - (1 - single_q_error) * (1 - two_q_error) * (1 - readout_error)
result = {
'estimated_fidelity': round(1 - total_error, 4),
'single_qubit_error': round(single_q_error, 4),
'two_qubit_error': round(two_q_error, 4),
'readout_error': round(readout_error, 4),
'total_error_probability': round(total_error, 4),
'hardware': hardware
}
return self._fallback_response("estimate_noise", result, start)
# ===== Composition Endpoints (Fallback) =====
def compose_circuits(self, qasm1: str, qasm2: str, qubit_mapping: str = "") -> MCPResponse:
"""Compose two circuits sequentially. Uses local fallback."""
start = time.perf_counter()
# Parse both circuits
parsed1 = self._analyzer.parse_qasm(qasm1)
parsed2 = self._analyzer.parse_qasm(qasm2)
# Simple sequential composition
num_qubits = max(parsed1['num_qubits'], parsed2['num_qubits'])
lines = [
'OPENQASM 2.0;',
'include "qelib1.inc";',
f'qreg q[{num_qubits}];',
f'creg c[{num_qubits}];'
]
# Add gates from both circuits
for g in parsed1['gates']:
if g['gate'].lower() != 'measure':
lines.append(f"{g['raw']};")
for g in parsed2['gates']:
lines.append(f"{g['raw']};")
result = {'qasm': '\n'.join(lines)}
return self._fallback_response("compose_circuits", result, start)
def generate_inverse_circuit(self, qasm_code: str) -> MCPResponse:
"""Generate the inverse of a circuit. Uses local fallback."""
start = time.perf_counter()
parsed = self._analyzer.parse_qasm(qasm_code)
# Inverse gate mappings
inverse_map = {
'h': 'h', 'x': 'x', 'y': 'y', 'z': 'z',
's': 'sdg', 'sdg': 's', 't': 'tdg', 'tdg': 't',
'cx': 'cx', 'cz': 'cz', 'swap': 'swap'
}
lines = [
'OPENQASM 2.0;',
'include "qelib1.inc";',
f'qreg q[{parsed["num_qubits"]}];',
f'creg c[{parsed["num_classical"]}];'
]
# Reverse and invert gates
for g in reversed(parsed['gates']):
gate = g['gate'].lower()
if gate == 'measure':
continue
inv_gate = inverse_map.get(gate, gate)
# Handle parametric gates
if '(' in g['raw']:
# Negate angle for rotation gates
raw = g['raw'].replace(gate, inv_gate)
if 'rz' in gate or 'rx' in gate or 'ry' in gate:
# Simple negation (not perfect)
pass
lines.append(f"{raw};")
else:
raw = g['raw'].replace(gate, inv_gate)
lines.append(f"{raw};")
result = {'qasm': '\n'.join(lines)}
return self._fallback_response("generate_inverse_circuit", result, start)
def tensor_circuits(self, qasm1: str, qasm2: str) -> MCPResponse:
"""Tensor product of two circuits. Uses local fallback."""
start = time.perf_counter()
parsed1 = self._analyzer.parse_qasm(qasm1)
parsed2 = self._analyzer.parse_qasm(qasm2)
total_qubits = parsed1['num_qubits'] + parsed2['num_qubits']
offset = parsed1['num_qubits']
lines = [
'OPENQASM 2.0;',
'include "qelib1.inc";',
f'qreg q[{total_qubits}];',
f'creg c[{total_qubits}];'
]
# Add gates from first circuit
for g in parsed1['gates']:
lines.append(f"{g['raw']};")
# Add gates from second circuit with offset
for g in parsed2['gates']:
raw = g['raw']
# Offset qubit indices
for i in range(parsed2['num_qubits'] - 1, -1, -1):
raw = raw.replace(f'q[{i}]', f'q[{i + offset}]')
lines.append(f"{raw};")
result = {'qasm': '\n'.join(lines)}
return self._fallback_response("tensor_circuits", result, start)
def repeat_circuit(self, qasm_code: str, n: int) -> MCPResponse:
"""Repeat a circuit n times. Uses local fallback."""
start = time.perf_counter()
parsed = self._analyzer.parse_qasm(qasm_code)
lines = [
'OPENQASM 2.0;',
'include "qelib1.inc";',
f'qreg q[{parsed["num_qubits"]}];',
f'creg c[{parsed["num_classical"]}];'
]
# Repeat non-measure gates n times
for _ in range(n):
for g in parsed['gates']:
if g['gate'].lower() != 'measure':
lines.append(f"{g['raw']};")
# Add measurements at end
for g in parsed['gates']:
if g['gate'].lower() == 'measure':
lines.append(f"{g['raw']};")
break
result = {'qasm': '\n'.join(lines)}
return self._fallback_response("repeat_circuit", result, start)
# ===== Utility Endpoints =====
def list_templates(self) -> MCPResponse:
"""List available circuit templates."""
start = time.perf_counter()
templates = [
'bell_state', 'ghz_state', 'w_state', 'superposition',
'qft', 'grover', 'vqe', 'qaoa'
]
return self._fallback_response("list_templates", {'templates': templates}, start)
def list_hardware_profiles(self) -> MCPResponse:
"""List available hardware profiles."""
start = time.perf_counter()
profiles = ['ibm_brisbane', 'ibm_sherbrooke', 'rigetti_aspen', 'ionq_harmony']
return self._fallback_response("list_hardware_profiles", {'profiles': profiles}, start)
# Singleton client instance
_client: Optional[MCPClient] = None
def get_client(base_url: Optional[str] = None) -> MCPClient:
"""
Get or create the MCP client singleton.
Args:
base_url: Optional URL override. If None, checks MCP_SERVER_URL env var,
then defaults to the HuggingFace Space URL
Returns:
MCPClient instance connected to the MCP server
"""
global _client
if _client is None:
if base_url is None:
base_url = os.environ.get("MCP_SERVER_URL", DEFAULT_MCP_URL)
_client = MCPClient(base_url)
logger.info(f"Created MCP client for: {base_url}")
return _client
def reset_client():
"""Reset the singleton client (useful for testing or reconnection)."""
global _client
_client = None
logger.info("MCP client reset") |