Spaces:
Running
Running
File size: 31,587 Bytes
cd3b358 35c8868 cd3b358 8a2e574 cd3b358 35c8868 cd3b358 8a2e574 cd3b358 8a2e574 cd3b358 35c8868 cd3b358 35c8868 cd3b358 35c8868 cd3b358 661a588 cd3b358 661a588 cd3b358 | 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 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 | """
FixFlow β Streamlit Frontend
Autonomous Bug Resolution Agent powered by GLM 5.1 (Z.ai)
"""
import time
import logging
import threading
from typing import Optional
import streamlit as st
from backend.agent import AgentResult, FixFlowAgent, generate_full_report
from backend.config import GLM_MODEL, GLM_BASE_URL, GLM_API_KEY, GITHUB_TOKEN
from backend.github_client import GitHubClient
from backend.llm_client import GLMClient
# ββ Logging Setup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
)
logger = logging.getLogger("fixflow.app")
# ββ Page Config βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="FixFlow β Autonomous Bug Resolution Agent",
page_icon="π§",
layout="wide",
initial_sidebar_state="collapsed",
)
# ββ Custom CSS ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');
/* ββ Root & Base βββββββββββ */
:root {
--bg-primary: #0a0b0f;
--bg-secondary: #12141a;
--bg-card: #1a1c24;
--bg-card-hover: #1e2028;
--accent-primary: #6c63ff;
--accent-secondary: #a78bfa;
--accent-green: #10b981;
--accent-red: #ef4444;
--accent-yellow: #f59e0b;
--accent-blue: #3b82f6;
--text-primary: #f0f0ff;
--text-secondary: #9ca3af;
--text-muted: #6b7280;
--border: #2a2c36;
--border-bright: #3a3c48;
--shadow-glow: 0 0 40px rgba(108, 99, 255, 0.15);
--radius: 12px;
--radius-sm: 8px;
}
/* Global font */
html, body, [class*="css"] {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text-primary);
}
/* Dark background */
.stApp {
background: var(--bg-primary);
background-image: radial-gradient(ellipse at 20% 10%, rgba(108, 99, 255, 0.08) 0%, transparent 60%),
radial-gradient(ellipse at 80% 90%, rgba(167, 139, 250, 0.05) 0%, transparent 60%);
}
/* Sidebar */
section[data-testid="stSidebar"] {
background: var(--bg-secondary) !important;
border-right: 1px solid var(--border) !important;
}
section[data-testid="stSidebar"] > div {
padding: 1.5rem 1.2rem;
}
/* ββ Logo / Header βββββββββ */
.fixflow-header {
text-align: center;
padding: 2rem 1rem 1rem;
margin-bottom: 1.5rem;
}
.fixflow-logo {
font-size: 3.5rem;
margin-bottom: 0.5rem;
display: block;
filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.5));
}
.fixflow-title {
font-size: 2.2rem;
font-weight: 800;
background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 50%, #60a5fa 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
line-height: 1.2;
margin-bottom: 0.4rem;
}
.fixflow-subtitle {
color: var(--text-secondary);
font-size: 1rem;
font-weight: 400;
margin-bottom: 1rem;
}
.powered-badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(167, 139, 250, 0.1));
border: 1px solid rgba(108, 99, 255, 0.3);
border-radius: 100px;
padding: 0.3rem 0.9rem;
font-size: 0.78rem;
font-weight: 600;
color: var(--accent-secondary);
letter-spacing: 0.04em;
text-transform: uppercase;
}
/* ββ Cards βββββββββββββββββ */
.pipeline-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem;
margin-bottom: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}
.pipeline-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
opacity: 0;
transition: opacity 0.3s ease;
}
.pipeline-card:hover::before { opacity: 1; }
.pipeline-card:hover {
border-color: var(--border-bright);
box-shadow: var(--shadow-glow);
}
/* ββ Step Status Indicators β */
.step-indicator {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.8rem 1rem;
border-radius: var(--radius-sm);
margin-bottom: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
border: 1px solid transparent;
transition: all 0.3s ease;
}
.step-idle {
background: rgba(107, 114, 128, 0.08);
border-color: rgba(107, 114, 128, 0.15);
color: var(--text-muted);
}
.step-running {
background: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
color: #60a5fa;
animation: pulse-blue 2s infinite;
}
.step-complete {
background: rgba(16, 185, 129, 0.08);
border-color: rgba(16, 185, 129, 0.25);
color: var(--accent-green);
}
.step-error {
background: rgba(239, 68, 68, 0.08);
border-color: rgba(239, 68, 68, 0.25);
color: var(--accent-red);
}
@keyframes pulse-blue {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.step-icon { font-size: 1.1rem; }
.step-time { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
/* ββ Input Fields ββββββββββ */
.stTextInput > div > div > input,
.stTextArea > div > div > textarea {
background: var(--bg-card) !important;
border: 1px solid var(--border) !important;
border-radius: var(--radius-sm) !important;
color: var(--text-primary) !important;
font-family: 'Inter', sans-serif !important;
transition: border-color 0.2s !important;
}
.stTextInput > div > div > input:focus,
.stTextArea > div > div > textarea:focus {
border-color: var(--accent-primary) !important;
box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12) !important;
}
/* ββ Analyze Button ββββββββ */
.stButton > button[kind="primary"] {
background: linear-gradient(135deg, #6c63ff, #a78bfa) !important;
border: none !important;
border-radius: 10px !important;
font-family: 'Inter', sans-serif !important;
font-weight: 700 !important;
font-size: 1rem !important;
padding: 0.7rem 2rem !important;
letter-spacing: 0.02em !important;
transition: all 0.3s ease !important;
box-shadow: 0 4px 24px rgba(108, 99, 255, 0.35) !important;
color: white !important;
}
.stButton > button[kind="primary"]:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 32px rgba(108, 99, 255, 0.5) !important;
}
.stButton > button[kind="primary"]:active {
transform: translateY(0) !important;
}
/* Secondary buttons */
.stButton > button[kind="secondary"] {
background: var(--bg-card) !important;
border: 1px solid var(--border-bright) !important;
border-radius: var(--radius-sm) !important;
color: var(--text-secondary) !important;
font-family: 'Inter', sans-serif !important;
font-weight: 500 !important;
}
/* ββ Expander ββββββββββββββ */
.streamlit-expanderHeader {
background: var(--bg-card) !important;
border: 1px solid var(--border) !important;
border-radius: var(--radius-sm) !important;
color: var(--text-primary) !important;
font-weight: 600 !important;
transition: border-color 0.2s !important;
}
.streamlit-expanderHeader:hover {
border-color: var(--accent-primary) !important;
}
.streamlit-expanderContent {
background: var(--bg-secondary) !important;
border: 1px solid var(--border) !important;
border-top: none !important;
border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
}
/* Code blocks */
.stCodeBlock pre, code {
font-family: 'JetBrains Mono', monospace !important;
font-size: 0.85rem !important;
}
/* ββ Metrics βββββββββββββββ */
.stat-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 1rem;
text-align: center;
}
.stat-value {
font-size: 1.8rem;
font-weight: 800;
background: linear-gradient(135deg, #6c63ff, #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
}
.stat-label {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 0.3rem;
text-transform: uppercase;
letter-spacing: 0.06em;
}
/* ββ Dividers ββββββββββββββ */
hr {
border: none !important;
border-top: 1px solid var(--border) !important;
margin: 1.5rem 0 !important;
}
/* ββ Sidebar specific ββββββ */
.sidebar-section-title {
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin: 1.2rem 0 0.5rem;
}
.sidebar-logo {
font-size: 1.5rem;
font-weight: 800;
background: linear-gradient(135deg, #6c63ff, #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.2rem;
}
/* ββ Stream output box βββββ */
.stream-box {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 1rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.82rem;
line-height: 1.6;
color: #d1fae5;
max-height: 300px;
overflow-y: auto;
white-space: pre-wrap;
word-break: break-word;
}
/* ββ Alerts ββββββββββββββββ */
.stAlert {
border-radius: var(--radius-sm) !important;
}
/* Toggle/checkbox */
.stCheckbox > label {
color: var(--text-secondary) !important;
font-size: 0.9rem !important;
}
/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }
/* Selectbox */
.stSelectbox > div > div {
background: var(--bg-card) !important;
border-color: var(--border) !important;
color: var(--text-primary) !important;
}
</style>
""", unsafe_allow_html=True)
# ββ Session State Init ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def init_session():
defaults = {
"result": None,
"running": False,
"step_statuses": {},
"step_messages": {},
"stream_buffer": "",
"error": None,
"glm_api_key": GLM_API_KEY,
"github_token": GITHUB_TOKEN,
"model": GLM_MODEL,
"run_confidence": True,
}
for k, v in defaults.items():
if k not in st.session_state:
st.session_state[k] = v
init_session()
# Header
st.markdown("""
<div class="fixflow-header">
<span class="fixflow-logo">π§</span>
<div class="fixflow-title">FixFlow</div>
<div class="fixflow-subtitle">Autonomous Bug Resolution Agent</div>
<span class="powered-badge">β‘ GLM 5.1 by Z.ai</span>
</div>
""", unsafe_allow_html=True)
# ββ Input Section βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown('<div class="pipeline-card">', unsafe_allow_html=True)
st.markdown("### π― Analyze a GitHub Issue")
st.markdown('<div style="color: #9ca3af; font-size: 0.9rem; margin-bottom: 1rem;">Paste a GitHub issue URL and the repository to analyze. FixFlow will autonomously trace the root cause and generate a fix.</div>', unsafe_allow_html=True)
col1, col2 = st.columns(2)
with col1:
issue_url = st.text_input(
"GitHub Issue URL",
placeholder="https://github.com/owner/repo/issues/123",
help="Full URL to the GitHub issue you want to fix",
key="issue_url_input",
)
with col2:
repo_url = st.text_input(
"Repository URL",
placeholder="https://github.com/owner/repo",
help="The repository containing the buggy code",
key="repo_url_input",
)
# Auto-fill repo from issue URL
if issue_url and not repo_url:
# Try to extract repo from issue URL
import re
m = re.match(r"(https://github\.com/[^/]+/[^/]+)/issues/\d+", issue_url.strip())
if m:
repo_url = m.group(1)
# Example buttons
st.markdown('<div style="margin-top: 0.5rem; color: #6b7280; font-size: 0.8rem;">π‘ Try with an example:</div>', unsafe_allow_html=True)
ex_col1, ex_col2, ex_col3 = st.columns(3)
with ex_col1:
if st.button("FastAPI #1234 example", key="ex1", help="Example issue"):
st.info("Set issue URL to a real FastAPI issue, e.g.: https://github.com/tiangolo/fastapi/issues/10876")
with ex_col2:
if st.button("Requests #6710 example", key="ex2", help="Example issue"):
st.info("Set issue URL to: https://github.com/psf/requests/issues/6710")
with ex_col3:
if st.button("Flask #5742 example", key="ex3", help="Example issue"):
st.info("Set issue URL to: https://github.com/pallets/flask/issues/5742")
st.markdown('</div>', unsafe_allow_html=True)
# ββ Analyze Button ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("<br>", unsafe_allow_html=True)
btn_col, info_col = st.columns([1, 3])
with btn_col:
analyze_clicked = st.button(
"π Analyze & Fix",
key="analyze_btn",
type="primary",
disabled=st.session_state.running,
use_container_width=True,
)
with info_col:
if st.session_state.running:
st.markdown(
'<div style="padding: 0.6rem; color: #60a5fa; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem;">'
'β³ Analysis in progress... This may take 1-3 minutes depending on repo size.'
'</div>',
unsafe_allow_html=True
)
elif st.session_state.result:
total_time = sum(st.session_state.result.step_timings.values())
st.markdown(
f'<div style="padding: 0.6rem; color: #10b981; font-size: 0.9rem;">'
f'β
Last analysis completed in {total_time:.1f}s</div>',
unsafe_allow_html=True
)
# ββ Pipeline Execution ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
STEP_LABELS = {
"0_fetch": ("π‘", "Fetching GitHub Data"),
"1_issue": ("π", "Analyzing Bug Report"),
"2_mapping": ("πΊοΈ", "Mapping Codebase"),
"3_analysis": ("π¬", "Root Cause Analysis"),
"4_fix": ("π§", "Generating Fix"),
"5_diff": ("π", "Creating PR Description"),
"6_confidence": ("π―", "Confidence Evaluation"),
}
def run_agent():
"""Execute the FixFlow agent pipeline (runs in main thread for Streamlit)."""
st.session_state.running = True
st.session_state.result = None
st.session_state.error = None
st.session_state.step_statuses = {}
st.session_state.step_messages = {}
st.session_state.stream_buffer = ""
def on_status(step: str, status: str, message: str):
st.session_state.step_statuses[step] = status
st.session_state.step_messages[step] = message
def on_stream(chunk: str):
st.session_state.stream_buffer += chunk
try:
llm = GLMClient(
api_key=st.session_state.glm_api_key,
base_url=GLM_BASE_URL,
model=st.session_state.model,
)
gh = GitHubClient(token=st.session_state.github_token or None)
agent = FixFlowAgent(llm_client=llm, github_client=gh)
result = agent.run(
issue_url=issue_url.strip(),
repo_url=repo_url.strip(),
on_status=on_status,
stream_callback=on_stream,
run_confidence_eval=st.session_state.run_confidence,
)
st.session_state.result = result
except Exception as e:
st.session_state.error = str(e)
logger.exception("Agent pipeline error")
finally:
st.session_state.running = False
# Trigger on button click
if analyze_clicked:
if not st.session_state.glm_api_key:
st.error("β οΈ Please enter your GLM API key in the sidebar.")
elif not issue_url:
st.error("β οΈ Please enter a GitHub Issue URL.")
elif not repo_url:
st.error("β οΈ Please enter the Repository URL.")
else:
run_agent()
st.rerun()
# ββ Error Display βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if st.session_state.error:
st.error(f"β **Error:** {st.session_state.error}")
with st.expander("π Debug Information"):
st.code(st.session_state.error)
# ββ Pipeline Progress βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if st.session_state.step_statuses or st.session_state.result:
st.markdown("---")
st.markdown("### β‘ Pipeline Progress")
statuses = st.session_state.step_statuses
result: Optional[AgentResult] = st.session_state.result
timings = result.step_timings if result else {}
status_icons = {
"running": "β³",
"complete": "β
",
"error": "β",
"info": "βΉοΈ",
}
progress_cols = st.columns(min(len(STEP_LABELS), 4))
step_items = list(STEP_LABELS.items())
for i, (step_id, (icon, label)) in enumerate(step_items):
status = statuses.get(step_id, "idle")
timing = timings.get(step_id)
css_class = f"step-{status}" if status != "idle" else "step-idle"
status_icon = status_icons.get(status, "β¬")
time_str = f"{timing:.1f}s" if timing else ""
st.markdown(
f'<div class="step-indicator {css_class}">'
f'<span class="step-icon">{status_icon}</span>'
f'<span>{icon} {label}</span>'
f'<span class="step-time">{time_str}</span>'
f'</div>',
unsafe_allow_html=True,
)
# ββ Results βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if st.session_state.result:
result: AgentResult = st.session_state.result
st.markdown("---")
# ββ Summary Stats βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
total_time = sum(result.step_timings.values())
stats = result.diff_stats
st.markdown("### π Analysis Summary")
m1, m2, m3, m4 = st.columns(4)
with m1:
st.markdown(
f'<div class="stat-card">'
f'<div class="stat-value">{len(result.suspect_file_paths)}</div>'
f'<div class="stat-label">Files Analyzed</div>'
f'</div>',
unsafe_allow_html=True
)
with m2:
st.markdown(
f'<div class="stat-card">'
f'<div class="stat-value">{stats.get("files_changed", 0)}</div>'
f'<div class="stat-label">Files Changed</div>'
f'</div>',
unsafe_allow_html=True
)
with m3:
st.markdown(
f'<div class="stat-card">'
f'<div class="stat-value">+{stats.get("lines_added", 0)}</div>'
f'<div class="stat-label">Lines Added</div>'
f'</div>',
unsafe_allow_html=True
)
with m4:
st.markdown(
f'<div class="stat-card">'
f'<div class="stat-value">{total_time:.0f}s</div>'
f'<div class="stat-label">Total Time</div>'
f'</div>',
unsafe_allow_html=True
)
st.markdown("<br>", unsafe_allow_html=True)
# ββ Step 1: Bug Summary βββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("π Step 1: Bug Summary", expanded=True):
st.markdown(
f'<div style="color: #9ca3af; font-size: 0.82rem; margin-bottom: 1rem;">'
f'β±οΈ Completed in {result.step_timings.get("1_issue", 0):.1f}s'
f'</div>',
unsafe_allow_html=True
)
st.markdown(result.bug_summary)
# ββ Step 2: Relevant Files ββββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("π Step 2: Relevant Files & Codebase Mapping", expanded=False):
st.markdown(
f'<div style="color: #9ca3af; font-size: 0.82rem; margin-bottom: 0.5rem;">'
f'β±οΈ Completed in {result.step_timings.get("2_mapping", 0):.1f}s | '
f'Selected {len(result.suspect_file_paths)} files for deep analysis'
f'</div>',
unsafe_allow_html=True
)
if result.suspect_file_paths:
st.markdown("**π― Files Selected for Analysis:**")
for i, fp in enumerate(result.suspect_file_paths, 1):
st.markdown(f"`{i}.` `{fp}`")
st.markdown("---")
st.markdown(result.relevant_files_analysis)
# ββ Step 3: Root Cause Analysis βββββββββββββββββββββββββββββββββββββββββββ
with st.expander("π¬ Step 3: Root Cause Analysis (Chain-of-Thought)", expanded=True):
st.markdown(
f'<div style="color: #9ca3af; font-size: 0.82rem; margin-bottom: 1rem;">'
f'β±οΈ Completed in {result.step_timings.get("3_analysis", 0):.1f}s | '
f'This is the core reasoning chain β read carefully!'
f'</div>',
unsafe_allow_html=True
)
st.markdown(result.root_cause_analysis)
# ββ Step 4: Proposed Fix (Diff) βββββββββββββββββββββββββββββββββββββββββββ
with st.expander("π§ Step 4: Proposed Fix", expanded=True):
st.markdown(
f'<div style="color: #9ca3af; font-size: 0.82rem; margin-bottom: 1rem;">'
f'β±οΈ Completed in {result.step_timings.get("4_fix", 0):.1f}s | '
f'{stats.get("files_changed", 0)} file(s) modified, '
f'+{stats.get("lines_added", 0)} / -{stats.get("lines_removed", 0)} lines'
f'</div>',
unsafe_allow_html=True
)
if result.diffs:
# Syntax-highlighted diff
for filepath, diff_content in result.diffs.items():
st.markdown(f"**`{filepath}`**")
st.code(diff_content, language="diff")
else:
st.warning("β οΈ No diffs generated. The LLM may not have proposed direct file changes.")
if result.fix_generation_raw:
st.markdown("**Raw fix proposal from GLM:**")
st.markdown(result.fix_generation_raw)
# Copy button for full diff
if result.diff_formatted and result.diffs:
st.markdown("---")
copy_col, pr_col, _ = st.columns([1, 1, 2])
with copy_col:
st.download_button(
"π Download .diff Patch",
data=result.diff_formatted,
file_name="fixflow.diff",
mime="text/plain",
use_container_width=True,
)
with pr_col:
if st.button("π Open GitHub Pull Request", use_container_width=True, type="primary"):
if not st.session_state.github_token:
st.error("β οΈ A GitHub Token with write access is required to open a PR.")
else:
with st.spinner("π Creating Pull Request..."):
gh = GitHubClient(token=st.session_state.github_token)
try:
branch_name = f"fixflow-patch-{int(time.time())}"
title = f"Fix: {result.issue_data.get('title', 'Issue')}"
body = result.fix_explanation + "\n\n---\n*Generated autonomously by FixFlow*"
pr_url = gh.create_pull_request(
repo_url=result.repo_url,
branch_name=branch_name,
files_content=result.fixed_files,
title=title,
body=body
)
st.success(f"β
Created successfully: [View PR]({pr_url})")
except Exception as e:
st.error(f"Failed to create PR: {e}")
# ββ Step 5: Fix Explanation βββββββββββββββββββββββββββββββββββββββββββββββ
with st.expander("π Step 5: PR Description & Fix Explanation", expanded=True):
st.markdown(
f'<div style="color: #9ca3af; font-size: 0.82rem; margin-bottom: 1rem;">'
f'β±οΈ Completed in {result.step_timings.get("5_diff", 0):.1f}s'
f'</div>',
unsafe_allow_html=True
)
st.markdown(result.fix_explanation)
# ββ Confidence Eval (optional) ββββββββββββββββββββββββββββββββββββββββββββ
if result.confidence_eval:
with st.expander("π― Confidence Self-Evaluation", expanded=False):
st.markdown(result.confidence_eval)
# ββ Export Full Report ββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("---")
st.markdown("### π€ Export Report")
exp_col1, exp_col2, _ = st.columns([1, 1, 2])
full_report = generate_full_report(result)
issue_num = result.issue_data.get("number", "0")
repo_slug = repo_url.strip().rstrip("/").split("/")[-1] if repo_url else "repo"
with exp_col1:
st.download_button(
"π Download Full Report (.md)",
data=full_report,
file_name=f"fixflow_{repo_slug}_issue_{issue_num}.md",
mime="text/markdown",
use_container_width=True,
)
with exp_col2:
if result.diff_formatted and result.diffs:
st.download_button(
"π¦ Download Patch (.diff)",
data=result.diff_formatted,
file_name=f"fixflow_{repo_slug}_issue_{issue_num}.diff",
mime="text/plain",
use_container_width=True,
)
st.markdown("---")
st.markdown(
'<div style="text-align: center; color: #4b5563; font-size: 0.8rem; padding: 1rem 0;">'
'π§ <b style="color: #6c63ff;">FixFlow</b> β Autonomous Bug Resolution Β· Powered by '
'<b style="color: #a78bfa;">GLM 5.1 by Z.ai</b>'
'</div>',
unsafe_allow_html=True
)
# ββ Empty State βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
elif not st.session_state.running and not st.session_state.error:
st.markdown("<br>", unsafe_allow_html=True)
col1, col2, col3 = st.columns(3)
cards = [
("π", "Bug Report Parsing", "Automatically extracts error messages, reproduction steps, affected components, and technical clues from any GitHub issue."),
("π§ ", "Chain-of-Thought Reasoning", "Traces the execution flow step-by-step, citing specific file names, functions, and line numbers to pinpoint the root cause."),
("π§", "PR-Ready Fixes", "Generates minimal, precise code fixes with unified diffs and a complete pull request description you can copy directly."),
]
for col, (icon, title, desc) in zip([col1, col2, col3], cards):
with col:
st.markdown(
f'<div class="pipeline-card" style="text-align: center; padding: 2rem 1.5rem;">'
f'<div style="font-size: 2.5rem; margin-bottom: 0.75rem;">{icon}</div>'
f'<div style="font-weight: 700; font-size: 1rem; color: #f0f0ff; margin-bottom: 0.5rem;">{title}</div>'
f'<div style="font-size: 0.85rem; color: #6b7280; line-height: 1.6;">{desc}</div>'
f'</div>',
unsafe_allow_html=True,
)
st.markdown("<br>", unsafe_allow_html=True)
# How it works
st.markdown("### π How It Works")
steps_html = """<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; margin-top: 1rem;">"""
how_steps = [
("1", "π‘", "Fetch Issue", "Pulls the full GitHub issue: title, body, comments, labels"),
("2", "πΊοΈ", "Map Codebase", "Identifies top 5-10 suspect files from the repo tree"),
("3", "π¬", "Analyze Code", "Deep code reading with chain-of-thought root cause tracing"),
("4", "π§", "Generate Fix", "Creates corrected file versions with minimal changes"),
("5", "π", "Write PR", "Produces unified diff + human-readable PR description"),
]
for num, icon, title, desc in how_steps:
steps_html += f"""
<div style="background: #12141a; border: 1px solid #2a2c36; border-radius: 10px; padding: 1rem; position: relative;">
<div style="position: absolute; top: -10px; left: 12px; background: linear-gradient(135deg, #6c63ff, #a78bfa); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: white;">{num}</div>
<div style="font-size: 1.4rem; margin-bottom: 0.4rem; margin-top: 0.3rem;">{icon}</div>
<div style="font-weight: 700; font-size: 0.9rem; color: #f0f0ff; margin-bottom: 0.3rem;">{title}</div>
<div style="font-size: 0.78rem; color: #6b7280; line-height: 1.5;">{desc}</div>
</div>"""
steps_html += "</div>"
st.markdown(steps_html, unsafe_allow_html=True)
|