Spaces:
Sleeping
Sleeping
File size: 17,718 Bytes
470233e 6a5d39c 470233e 3e5c95a 470233e 3e5c95a 470233e |
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 |
import os
from openai import OpenAI
import anthropic
import gradio as gr
# ENVIRONMENT - Modified for Hugging Face Spaces
open_api_key = os.getenv('OPENAI_API_KEY')
anthropic_api_key = os.getenv('ANTHROPIC_API_KEY')
deepseek_api_key = os.getenv('DEEPSEEK_API_KEY')
# Initialize clients with error handling
try:
openai = OpenAI(api_key=open_api_key) if open_api_key else None
claude = anthropic.Anthropic(api_key=anthropic_api_key) if anthropic_api_key else None
deepseek = OpenAI(api_key=deepseek_api_key, base_url="https://api.deepseek.com/v1") if deepseek_api_key else None
except Exception as e:
print(f"Warning: API client initialization failed: {e}")
openai = claude = deepseek = None
OPENAI_MODEL = "gpt-4o-mini"
CLAUDE_MODEL = "claude-3-haiku-20240307"
DEEPSEEK_MODEL = 'deepseek-coder'
system_message = (
"You are an assistant that adds docstrings to functions and comments to code where necessary. "
"Do not modify the code itself β only add docstrings and explanatory comments. "
"The functionality of the code must remain exactly the same. "
"Do not explain your reasoning or what additions you made β just add docstrings and comments to the code. "
"Return only the modified version of the code, with no extra explanations or comments beyond what was asked."
)
def user_prompt_for(code):
user_prompt = (
"Add comments to the following code.\n"
"DO NOT change the functionality of the code.\n\n"
f"{code}"
)
return user_prompt
def messages_for(code):
return [
{"role": "system", "content": system_message},
{"role": "user", "content": user_prompt_for(code)}
]
def stream_gpt(code):
if not openai:
yield "Error: OpenAI API key not configured. Please add OPENAI_API_KEY to the Space secrets."
return
try:
stream = openai.chat.completions.create(
model=OPENAI_MODEL,
messages=messages_for(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with OpenAI API: {str(e)}"
def stream_deepseek(code):
if not deepseek:
yield "Error: DeepSeek API key not configured. Please add DEEPSEEK_API_KEY to the Space secrets."
return
try:
stream = deepseek.chat.completions.create(
model=DEEPSEEK_MODEL,
messages=messages_for(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with DeepSeek API: {str(e)}"
def stream_claude(code):
if not claude:
yield "Error: Anthropic API key not configured. Please add ANTHROPIC_API_KEY to the Space secrets."
return
try:
result = claude.messages.stream(
model=CLAUDE_MODEL,
max_tokens=2000,
system=system_message,
messages=[{"role": "user", "content": user_prompt_for(code)}]
)
reply = ''
with result as stream:
for text in stream.text_stream:
reply += text
yield reply.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with Claude API: {str(e)}"
python_hard = """
def lcg(seed, a=1664525, c=1013904223, m=2**32):
value = seed
while True:
value = (a * value + c) % m
yield value
def max_subarray_sum(n, seed, min_val, max_val):
lcg_gen = lcg(seed)
random_numbers = [next(lcg_gen) % (max_val - min_val + 1) + min_val for _ in range(n)]
max_sum = float('-inf')
for i in range(n):
current_sum = 0
for j in range(i, n):
current_sum += random_numbers[j]
if current_sum > max_sum:
max_sum = current_sum
return max_sum
def total_max_subarray_sum(n, initial_seed, min_val, max_val):
total_sum = 0
lcg_gen = lcg(initial_seed)
for _ in range(20):
seed = next(lcg_gen)
total_sum += max_subarray_sum(n, seed, min_val, max_val)
return total_sum
# Parameters
n = 10000 # Number of random numbers
initial_seed = 42 # Initial seed for the LCG
min_val = -10 # Minimum value of random numbers
max_val = 10 # Maximum value of random numbers
# Timing the function
import time
start_time = time.time()
result = total_max_subarray_sum(n, initial_seed, min_val, max_val)
end_time = time.time()
print("Total Maximum Subarray Sum (20 runs):", result)
print("Execution Time: {:.6f} seconds".format(end_time - start_time))
"""
def docstring(python, model):
if model=="GPT":
result = stream_gpt(python)
elif model=="Claude":
result = stream_claude(python)
elif model == "DeepSeek":
result = stream_deepseek(python)
else:
yield "Error: Unknown model selected"
return
for stream_so_far in result:
yield stream_so_far
system_message_unit_test = (
"You are an assistant that generates Python unit test code for the given code. "
"Do not modify the original code β only write test cases that thoroughly cover the functionality. "
"Use the standard unittest framework syntax. "
"Return only the test code, no explanations or additional text. "
"The tests should be clear, concise, and runnable as-is."
)
def user_prompt_unit_test(code: str) -> str:
return (
"Write Python unit tests for the following code using the unittest module. "
"Do not change the original code. Only add test cases to verify its behavior.\n\n"
f"{code}"
)
def messages_for_test(code):
return [
{"role": "system", "content": system_message_unit_test},
{"role": "user", "content": user_prompt_unit_test(code)}
]
def stream_gpt_test(code):
if not openai:
yield "Error: OpenAI API key not configured. Please add OPENAI_API_KEY to the Space secrets."
return
try:
stream = openai.chat.completions.create(
model=OPENAI_MODEL,
messages=messages_for_test(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with OpenAI API: {str(e)}"
def stream_deepseek_test(code):
if not deepseek:
yield "Error: DeepSeek API key not configured. Please add DEEPSEEK_API_KEY to the Space secrets."
return
try:
stream = deepseek.chat.completions.create(
model=DEEPSEEK_MODEL,
messages=messages_for_test(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with DeepSeek API: {str(e)}"
def stream_claude_test(code):
if not claude:
yield "Error: Anthropic API key not configured. Please add ANTHROPIC_API_KEY to the Space secrets."
return
try:
result = claude.messages.stream(
model=CLAUDE_MODEL,
max_tokens=2000,
system=system_message_unit_test,
messages=[{"role": "user", "content": user_prompt_unit_test(code)}]
)
reply = ''
with result as stream:
for text in stream.text_stream:
reply += text
yield reply.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with Claude API: {str(e)}"
def unit_test(python, model):
if model=="GPT":
result = stream_gpt_test(python)
elif model=="Claude":
result = stream_claude_test(python)
elif model == "DeepSeek":
result = stream_deepseek_test(python)
else:
yield "Error: Unknown model selected"
return
for stream_so_far in result:
yield stream_so_far
test_case = """def add(a, b):
return a + b
def divide(a, b):
if b == 0:
raise ValueError("Cannot divide by zero")
return a / b"""
system_message_explaio = (
"You are a helpful assistant that explains Python code in clear, beginner-friendly terms. "
"Break down the logic, describe the purpose of functions and classes, and clarify complex parts. "
"Use simple language, bullet points, and examples where appropriate. "
"Do not modify or rewrite the code. Just explain what it does and how it works."
)
def user_prompt_explaio(code: str) -> str:
return (
"Explain the following Python code in simple terms. "
"Provide an overview of what the code does and explain any functions, loops, or logic used.\n\n"
f"{code}"
)
def messages_for_explaio(code):
return [
{"role": "system", "content": system_message_explaio},
{"role": "user", "content": user_prompt_explaio(code)}
]
def stream_gpt_explain(code):
if not openai:
yield "Error: OpenAI API key not configured. Please add OPENAI_API_KEY to the Space secrets."
return
try:
stream = openai.chat.completions.create(
model=OPENAI_MODEL,
messages=messages_for_explaio(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with OpenAI API: {str(e)}"
def stream_deepseek_explain(code):
if not deepseek:
yield "Error: DeepSeek API key not configured. Please add DEEPSEEK_API_KEY to the Space secrets."
return
try:
stream = deepseek.chat.completions.create(
model=DEEPSEEK_MODEL,
messages=messages_for_explaio(code),
stream=True
)
result = ''
for chunk in stream:
fragment = chunk.choices[0].delta.content or ""
result += fragment
yield result.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with DeepSeek API: {str(e)}"
def stream_claude_explain(code):
if not claude:
yield "Error: Anthropic API key not configured. Please add ANTHROPIC_API_KEY to the Space secrets."
return
try:
result = claude.messages.stream(
model=CLAUDE_MODEL,
max_tokens=2000,
system=system_message_explaio,
messages=[{"role": "user", "content": user_prompt_explaio(code)}]
)
reply = ''
with result as stream:
for text in stream.text_stream:
reply += text
yield reply.replace('```python\n','').replace('```','')
except Exception as e:
yield f"Error with Claude API: {str(e)}"
def explain_code(code, model):
if model=="GPT":
result = stream_gpt_explain(code)
elif model=="Claude":
result = stream_claude_explain(code)
elif model == "DeepSeek":
result = stream_deepseek_explain(code)
else:
yield "Error: Unknown model selected"
return
for stream_so_far in result:
yield stream_so_far
python_example = """
class ExpressionError(Exception):
pass
class ExpressionEvaluator:
def __init__(self, expression):
self.expression = expression.replace(" ", "")
def evaluate(self):
try:
return self._evaluate_expression(self.expression)
except ZeroDivisionError:
raise ExpressionError("Division by zero is not allowed.")
except Exception as e:
raise ExpressionError(f"Invalid expression: {e}")
def _evaluate_expression(self, expr):
if expr.isdigit():
return int(expr)
for op in ['+', '-', '*', '/']:
depth = 0
for i in range(len(expr) - 1, -1, -1):
if expr[i] == ')':
depth += 1
elif expr[i] == '(':
depth -= 1
elif depth == 0 and expr[i] == op:
left = self._evaluate_expression(expr[:i])
right = self._evaluate_expression(expr[i + 1:])
return self._apply_operator(op, left, right)
if expr[0] == '(' and expr[-1] == ')':
return self._evaluate_expression(expr[1:-1])
raise ExpressionError("Malformed expression")
def _apply_operator(self, op, a, b):
if op == '+':
return a + b
elif op == '-':
return a - b
elif op == '*':
return a * b
elif op == '/':
if b == 0:
raise ZeroDivisionError()
return a / b
else:
raise ExpressionError(f"Unsupported operator: {op}")
"""
MODEL_OPTIONS = ["GPT", "Claude", "DeepSeek"]
# Create Gradio interface
with gr.Blocks(title="Code Assistant", theme=gr.themes.Soft()) as ui:
gr.Markdown("# π€ Code Assistant")
gr.Markdown("*Enhance your Python code with AI-powered documentation, testing, and explanations*")
# Add API key status information
with gr.Row():
api_status = []
if openai: api_status.append("β
OpenAI")
else: api_status.append("β OpenAI")
if claude: api_status.append("β
Claude")
else: api_status.append("β Claude")
if deepseek: api_status.append("β
DeepSeek")
else: api_status.append("β DeepSeek")
gr.Markdown(f"**API Status:** {' | '.join(api_status)}")
with gr.Tabs():
# Docstring Adder Tab
with gr.Tab("π DocoBot"):
gr.Markdown("### Auto-Generate Docstrings & Comments")
with gr.Row():
docu_code_input = gr.Code(
label="Input Code",
language="python",
lines=20,
value=python_hard
)
docu_output = gr.Code(
label="Output Code with Docstrings",
language="python",
lines=20,
interactive=False
)
with gr.Row():
docu_model_select = gr.Dropdown(
MODEL_OPTIONS,
value="DeepSeek",
label="Select Model"
)
with gr.Row():
docu_convert_btn = gr.Button("Add Docstrings", variant="primary")
docu_clear_btn = gr.Button("Clear")
docu_convert_btn.click(
fn=docstring,
inputs=[docu_code_input, docu_model_select],
outputs=[docu_output]
)
docu_clear_btn.click(
fn=lambda: ("", ""),
inputs=[],
outputs=[docu_code_input, docu_output]
)
# Unit Test Case Adder Tab
with gr.Tab("π§ͺ TestoBot"):
gr.Markdown("### Instantly Add Unit Tests to Your Code")
with gr.Row():
test_code_input = gr.Code(
label="Input Code",
language="python",
lines=20,
value=test_case
)
test_output = gr.Code(
label="Output Code with Unit Tests",
language="python",
lines=20,
interactive=False
)
with gr.Row():
test_model_select = gr.Dropdown(
MODEL_OPTIONS,
value="DeepSeek",
label="Select Model"
)
with gr.Row():
test_convert_btn = gr.Button("Add Unit Tests", variant="primary")
test_clear_btn = gr.Button("Clear")
test_convert_btn.click(
fn=unit_test,
inputs=[test_code_input, test_model_select],
outputs=[test_output]
)
test_clear_btn.click(
fn=lambda: ("", ""),
inputs=[],
outputs=[test_code_input, test_output]
)
with gr.Tab("π§ ExplaioBot"):
gr.Markdown("### Understand Your Code")
with gr.Row():
code = gr.Code(label="Your Code", lines=20, language='python', value=python_example)
output = gr.Textbox(label="Explanation", lines=20)
with gr.Row():
model = gr.Dropdown(["GPT", "Claude", "DeepSeek"], value="DeepSeek", label="Select Model")
with gr.Row():
explain_btn = gr.Button("π Explain Code", variant="primary")
explain_clear_btn = gr.Button("Clear")
explain_btn.click(fn=explain_code, inputs=[code, model], outputs=[output])
explain_clear_btn.click(
fn=lambda: ("", ""),
inputs=[],
outputs=[code,output]
)
# Launch the app
if __name__ == "__main__":
ui.launch() |