Spaces:
Runtime error
Runtime error
File size: 21,897 Bytes
af21194 b731b47 af21194 b731b47 af21194 b731b47 af21194 b731b47 af21194 b731b47 af21194 b731b47 af21194 b731b47 769b2c0 b731b47 769b2c0 b731b47 769b2c0 b731b47 769b2c0 b731b47 769b2c0 b731b47 769b2c0 b731b47 af21194 b731b47 af21194 b731b47 af21194 5bc95f5 af21194 5bc95f5 af21194 |
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 |
"""
Python to C++ Code Optimizer - Modern UI with Password Protection
AI-powered code conversion using GPT-4o, Claude-3.5-Sonnet, and Open Source models
Supported Models:
- GPT-4o (OpenAI) - Premium, fastest, most accurate
- Claude-3.5-Sonnet (Anthropic) - Premium, excellent for code
- CodeLlama-34B (Meta) - Open source, free/cheap
- DeepSeek-Coder-33B - Open source, excellent for code
- Mistral-7B - Open source, fast, general purpose
β οΈ SECURITY WARNING:
This app executes arbitrary code. Only run code from trusted sources.
Malicious code can harm the system. Use at your own risk.
"""
import os
import io
import sys
import subprocess
import socket
import requests
import httpx
from openai import OpenAI
import anthropic
import gradio as gr
# Try to load from .env file if available
try:
from dotenv import load_dotenv
load_dotenv()
except ImportError:
pass
# PASSWORD PROTECTION
# Set this as a Hugging Face Secret: APP_PASSWORD
APP_PASSWORD = os.environ.get("APP_PASSWORD", "demo123") # Change default!
# Lazy initialization of AI clients with explicit HTTP client to avoid Gradio conflicts
def get_openai_client():
api_key = os.environ.get("OPENAI_API_KEY")
if not api_key:
raise ValueError("OPENAI_API_KEY not found. Please set it in your environment or .env file.")
# Create a clean HTTP client without proxies to avoid Gradio conflicts
http_client = httpx.Client(
timeout=60.0,
limits=httpx.Limits(max_keepalive_connections=5, max_connections=10)
)
return OpenAI(api_key=api_key, http_client=http_client)
def get_claude_client():
api_key = os.environ.get("ANTHROPIC_API_KEY")
if not api_key:
raise ValueError("ANTHROPIC_API_KEY not found. Please set it in your environment or .env file.")
# Create a clean HTTP client without proxies to avoid Gradio conflicts
http_client = httpx.Client(
timeout=60.0,
limits=httpx.Limits(max_keepalive_connections=5, max_connections=10)
)
return anthropic.Anthropic(api_key=api_key, http_client=http_client)
# Model configurations
OPENAI_MODEL = "gpt-4o"
CLAUDE_MODEL = "claude-3-5-sonnet-20240620"
# Hugging Face models (open source)
HF_MODELS = {
"CodeLlama-34B": "codellama/CodeLlama-34b-Instruct-hf",
"DeepSeek-Coder-33B": "deepseek-ai/deepseek-coder-33b-instruct",
"Mistral-7B": "mistralai/Mistral-7B-Instruct-v0.2"
}
# Hugging Face API endpoint
HF_API_URL = "https://api-inference.huggingface.co/models/"
# System and user prompts
system_message = (
"You are an assistant that reimplements Python code in high performance C++. "
"Respond only with C++ code; use comments sparingly and do not provide any explanation other than occasional comments. "
"The C++ response needs to produce an identical output in the fastest possible time."
)
def user_prompt_for(python):
user_prompt = (
"Rewrite this Python code in C++ with the fastest possible implementation that produces identical output in the least time. "
"Respond only with C++ code; do not explain your work other than a few comments. "
"Pay attention to number types to ensure no int overflows. Remember to #include all necessary C++ packages such as iomanip.\n\n"
)
user_prompt += python
return user_prompt
def messages_for(python):
return [
{"role": "system", "content": system_message},
{"role": "user", "content": user_prompt_for(python)}
]
def write_output(cpp):
"""Write C++ code to file for compilation"""
code = cpp.replace("```cpp","").replace("```","")
with open("optimized.cpp", "w") as f:
f.write(code)
def stream_gpt(python):
"""Stream GPT-4o response"""
try:
client = get_openai_client()
stream = client.chat.completions.create(
model=OPENAI_MODEL,
messages=messages_for(python),
stream=True
)
reply = ""
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
reply += fragment
yield reply.replace('```cpp\n','').replace('```','')
except ValueError as e:
yield f"β Error: {str(e)}"
except Exception as e:
yield f"β Error: {str(e)}"
def stream_claude(python):
"""Stream Claude response"""
try:
client = get_claude_client()
result = client.messages.stream(
model=CLAUDE_MODEL,
max_tokens=2000,
system=system_message,
messages=[{"role": "user", "content": user_prompt_for(python)}],
)
reply = ""
with result as stream:
for text in stream.text_stream:
reply += text
yield reply.replace('```cpp\n','').replace('```','')
except ValueError as e:
yield f"β Error: {str(e)}"
except Exception as e:
yield f"β Error: {str(e)}"
def stream_huggingface(python, model_name):
"""Stream Hugging Face model response"""
try:
# Get HF token (optional - works without it but with rate limits)
hf_token = os.environ.get("HF_TOKEN", "")
# Get the model ID
model_id = HF_MODELS.get(model_name)
if not model_id:
yield f"β Unknown model: {model_name}"
return
headers = {"Authorization": f"Bearer {hf_token}"} if hf_token else {}
# Prepare the prompt
prompt = f"{system_message}\n\n{user_prompt_for(python)}"
payload = {
"inputs": prompt,
"parameters": {
"max_new_tokens": 2000,
"temperature": 0.7,
"return_full_text": False
}
}
# Call HF Inference API
response = requests.post(
HF_API_URL + model_id,
headers=headers,
json=payload,
timeout=60
)
# Check if response body is empty
if not response.text or len(response.text.strip()) == 0:
yield f"β³ Model is loading or initializing...\n\n"
yield f"This happens on first use. Please try again in 30-60 seconds.\n\n"
yield f"π‘ Quick alternative: Use GPT-4o or Claude-3.5-Sonnet (instant results!)"
return
if response.status_code == 200:
try:
result = response.json()
if isinstance(result, list) and len(result) > 0:
generated_text = result[0].get("generated_text", "")
else:
generated_text = result.get("generated_text", "")
if not generated_text or len(generated_text.strip()) == 0:
yield f"β οΈ Model returned empty response.\n\n"
yield f"Try again or use GPT-4o/Claude-3.5-Sonnet instead."
return
# Clean up the response
reply = generated_text.replace('```cpp\n','').replace('```','')
yield reply
except ValueError as json_err:
# JSON parsing failed
yield f"β οΈ Model response format error.\n\n"
yield f"The model might still be warming up. Try again in 30 seconds.\n\n"
yield f"π‘ Or use GPT-4o/Claude-3.5-Sonnet for instant results!"
elif response.status_code == 401 or response.status_code == 403:
# Authentication error - need HF token
yield f"π Authentication Required!\n\n"
yield f"To use open-source models, you need a FREE Hugging Face token:\n\n"
yield f"1. Get token: https://huggingface.co/settings/tokens\n"
yield f"2. Add HF_TOKEN secret in Space Settings\n"
yield f"3. Factory reboot\n\n"
yield f"OR use GPT-4o/Claude-3.5-Sonnet instead (they work now!)"
elif response.status_code == 503:
# Service unavailable - model loading
yield f"β³ Model is currently loading (cold start)...\n\n"
yield f"This can take 30-60 seconds on first use.\n"
yield f"Please wait a minute and try again.\n\n"
yield f"π‘ Quick solution: Use GPT-4o or Claude-3.5-Sonnet (no waiting!)"
else:
try:
error_msg = response.json().get("error", "Unknown error")
except:
error_msg = response.text[:200] if response.text else "Empty response"
if "loading" in str(error_msg).lower():
yield f"β³ Model is loading... This may take 20-30 seconds. Please try again."
else:
yield f"β Error from Hugging Face (HTTP {response.status_code}):\n{error_msg}\n\n"
yield f"π‘ Tip: Use GPT-4o or Claude-3.5-Sonnet for now (they're working!)"
except requests.exceptions.Timeout:
yield f"β±οΈ Request timed out.\n\n"
yield f"Model might be loading (cold start). Try again in 30-60 seconds.\n\n"
yield f"π‘ Or use GPT-4o/Claude-3.5-Sonnet for instant results!"
except requests.exceptions.RequestException as req_err:
yield f"π Network error: {str(req_err)}\n\n"
yield f"π‘ Please use GPT-4o or Claude-3.5-Sonnet instead."
except Exception as e:
yield f"β Unexpected error: {str(e)}\n\n"
yield f"π‘ Tip: Use GPT-4o or Claude-3.5-Sonnet for reliable results!"
def optimize(python, model):
"""Convert Python to C++ using selected AI model"""
if model in ["GPT-4o", "GPT"]:
result = stream_gpt(python)
elif model in ["Claude-3.5-Sonnet", "Claude"]:
result = stream_claude(python)
elif model in HF_MODELS.keys():
result = stream_huggingface(python, model)
else:
raise ValueError(f"Unknown model: {model}")
for stream_so_far in result:
yield stream_so_far
def execute_python(code):
"""β οΈ WARNING: Executes arbitrary Python code"""
try:
output = io.StringIO()
sys.stdout = output
exec(code)
finally:
sys.stdout = sys.__stdout__
return output.getvalue()
def execute_cpp(code):
"""β οΈ WARNING: Compiles and executes arbitrary C++ code"""
write_output(code)
try:
compile_cmd = ["g++", "-O3", "-std=c++17", "-o", "optimized", "optimized.cpp"]
compile_result = subprocess.run(
compile_cmd,
check=True,
text=True,
capture_output=True,
timeout=30
)
run_cmd = ["./optimized"]
run_result = subprocess.run(
run_cmd,
check=True,
text=True,
capture_output=True,
timeout=30
)
return run_result.stdout
except subprocess.TimeoutExpired:
return "β οΈ Execution timed out (30 seconds limit)"
except subprocess.CalledProcessError as e:
return f"β An error occurred:\n{e.stderr}"
except Exception as e:
return f"β Unexpected error: {str(e)}"
# Example Python code
default_python = """import time
def calculate(iterations, param1, param2):
result = 1.0
for i in range(1, iterations+1):
j = i * param1 - param2
result -= (1/j)
j = i * param1 + param2
result += (1/j)
return result
start_time = time.time()
result = calculate(100_000_000, 4, 1) * 4
end_time = time.time()
print(f"Result: {result:.12f}")
print(f"Execution Time: {(end_time - start_time):.6f} seconds")
"""
# Modern CSS
modern_css = """
.gradio-container {
max-width: 1400px !important;
margin: 0 auto !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.modern-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 24px;
border-radius: 16px;
margin-bottom: 24px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.modern-header h1 {
margin: 0;
font-size: 32px;
font-weight: 700;
letter-spacing: -0.5px;
}
.modern-header p {
margin: 12px 0 0 0;
opacity: 0.9;
font-size: 18px;
font-weight: 400;
}
.security-warning {
background: #fee2e2 !important;
border: 2px solid #dc2626 !important;
border-radius: 12px !important;
padding: 16px !important;
margin: 16px 0 !important;
}
.python-input {
background: #f8fafc !important;
border: 2px solid #e2e8f0 !important;
border-radius: 12px !important;
padding: 16px !important;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
font-size: 14px !important;
color: #1e293b !important;
line-height: 1.5 !important;
}
.python-input:focus {
border-color: #3b82f6 !important;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
.cpp-output {
background: #f1f5f9 !important;
border: 2px solid #cbd5e1 !important;
border-radius: 12px !important;
padding: 16px !important;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
font-size: 14px !important;
color: #0f172a !important;
line-height: 1.5 !important;
}
.model-selector {
background: white !important;
border: 2px solid #e2e8f0 !important;
border-radius: 12px !important;
padding: 12px 16px !important;
font-size: 16px !important;
color: #374151 !important;
}
.model-selector:focus {
border-color: #3b82f6 !important;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
.modern-button {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
color: white !important;
border: none !important;
border-radius: 12px !important;
padding: 14px 28px !important;
font-weight: 600 !important;
font-size: 16px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2) !important;
}
.modern-button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 12px rgba(59, 130, 246, 0.3) !important;
}
.run-button {
background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
color: white !important;
border: none !important;
border-radius: 10px !important;
padding: 12px 24px !important;
font-weight: 600 !important;
font-size: 14px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2) !important;
}
.run-button:hover {
transform: translateY(-1px) !important;
box-shadow: 0 6px 8px rgba(16, 185, 129, 0.3) !important;
}
.output-section {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 16px;
margin: 12px 0;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 13px;
line-height: 1.4;
color: #374151;
min-height: 100px;
overflow-y: auto;
}
.python-output {
background: #fef3c7 !important;
border: 2px solid #f59e0b !important;
color: #92400e !important;
}
.cpp-output-result {
background: #dbeafe !important;
border: 2px solid #3b82f6 !important;
color: #1e40af !important;
}
.performance-card {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border: 1px solid #0ea5e9;
border-radius: 12px;
padding: 20px;
margin: 16px 0;
text-align: center;
}
.performance-card h3 {
margin: 0 0 12px 0;
color: #0c4a6e;
font-size: 18px;
font-weight: 600;
}
.performance-metric {
display: inline-block;
background: white;
border-radius: 8px;
padding: 8px 16px;
margin: 4px;
font-weight: 600;
color: #0c4a6e;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
"""
# Create the interface with password protection
def create_interface():
with gr.Blocks(css=modern_css, title="Python to C++ Code Optimizer", theme=gr.themes.Soft()) as app:
# Header Section
gr.HTML("""
<div class="modern-header">
<h1>π Python to C++ Code Optimizer</h1>
<p>AI-powered code conversion with real-time execution and performance analysis</p>
</div>
""")
# Security Warning
gr.HTML("""
<div class="security-warning">
<h3 style="color: #dc2626; margin: 0 0 8px 0;">β οΈ Security Warning</h3>
<p style="margin: 0; color: #991b1b; font-weight: 500;">
This interface executes arbitrary code. <strong>Only run code from trusted sources.</strong><br>
Malicious code can harm your system. Use at your own risk.
</p>
</div>
""")
# Main Content Area
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("### π Python Code Input")
python_input = gr.Textbox(
label="Python Code:",
value=default_python,
lines=15,
placeholder="Enter your Python code here...",
elem_classes=["python-input"],
show_copy_button=True
)
gr.Markdown("### π€ AI Model Selection")
model_selector = gr.Dropdown(
["GPT-4o", "Claude-3.5-Sonnet", "CodeLlama-34B", "DeepSeek-Coder-33B", "Mistral-7B"],
label="Select AI Model",
value="GPT-4o",
elem_classes=["model-selector"]
)
convert_btn = gr.Button("π Convert to C++", elem_classes=["modern-button"])
with gr.Column(scale=1):
gr.Markdown("### β‘ Generated C++ Code")
cpp_output = gr.Textbox(
label="C++ Code:",
lines=15,
placeholder="Generated C++ code will appear here...",
elem_classes=["cpp-output"],
show_copy_button=True
)
# Execution Section
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("### π Python Execution")
python_run_btn = gr.Button("βΆοΈ Run Python", elem_classes=["run-button"])
python_result = gr.TextArea(
label="Python Output:",
lines=8,
elem_classes=["output-section", "python-output"],
placeholder="Python execution results will appear here..."
)
with gr.Column(scale=1):
gr.Markdown("### π C++ Execution")
cpp_run_btn = gr.Button("βΆοΈ Run C++", elem_classes=["run-button"])
cpp_result = gr.TextArea(
label="C++ Output:",
lines=8,
elem_classes=["output-section", "cpp-output-result"],
placeholder="C++ execution results will appear here..."
)
# Performance Metrics Section
gr.HTML("""
<div class="performance-card">
<h3>π Performance Comparison</h3>
<div>
<span class="performance-metric">Python: ~6.3s</span>
<span class="performance-metric">C++: ~0.6s</span>
<span class="performance-metric">Speedup: 10x</span>
</div>
<p style="margin: 12px 0 0 0; color: #64748b; font-size: 14px;">
Compare execution times and performance metrics between Python and C++ implementations.<br>
Typical speedup: 10-100x depending on the algorithm.
</p>
</div>
""")
# Event Handlers
convert_btn.click(
optimize,
inputs=[python_input, model_selector],
outputs=[cpp_output],
show_progress=True
)
python_run_btn.click(
execute_python,
inputs=[python_input],
outputs=[python_result],
show_progress=True
)
cpp_run_btn.click(
execute_cpp,
inputs=[cpp_output],
outputs=[cpp_result],
show_progress=True
)
return app
# Launch with password protection
if __name__ == "__main__":
app = create_interface()
# Check if running on Hugging Face Spaces
is_huggingface = os.getenv("SPACE_ID") is not None
if is_huggingface:
# Hugging Face Spaces configuration
print(f"π Launching Python to C++ Code Optimizer on Hugging Face Spaces")
print(f"π Password protection enabled")
app.launch(
auth=("user", APP_PASSWORD),
auth_message="π Enter credentials to access the Python to C++ Code Optimizer"
)
else:
# Local development configuration
def find_free_port():
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(('', 0))
s.listen(1)
port = s.getsockname()[1]
return port
free_port = find_free_port()
print(f"π Launching Python to C++ Code Optimizer on port: {free_port}")
print(f"π Password protection enabled")
# Launch with authentication
app.launch(
inbrowser=True,
share=False,
server_name="127.0.0.1",
server_port=free_port,
show_error=True,
auth=("user", APP_PASSWORD),
auth_message="π Enter credentials to access the Python to C++ Code Optimizer"
)
|