Spaces:
Sleeping
Sleeping
fix: Correct indentation error on line 108 (add one space)
Browse files
app.py
CHANGED
|
@@ -99,6 +99,18 @@ def create_main_interface():
|
|
| 99 |
3. **Restart this Space** (it will restart automatically after adding the secret)
|
| 100 |
|
| 101 |
For more details, see the [DEPLOY.md](DEPLOY.md) file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
label="Error Message / Stack Trace",
|
| 103 |
placeholder="Paste your error message, stack trace, or describe the bug...",
|
| 104 |
lines=8,
|
|
|
|
| 99 |
3. **Restart this Space** (it will restart automatically after adding the secret)
|
| 100 |
|
| 101 |
For more details, see the [DEPLOY.md](DEPLOY.md) file.
|
| 102 |
+
""")
|
| 103 |
+
else:
|
| 104 |
+
# Main content - only show if configured
|
| 105 |
+
with gr.Tabs() as tabs:
|
| 106 |
+
# TAB 1: ANALYZE
|
| 107 |
+
with gr.Tab("📝 Analyze", id=0):
|
| 108 |
+
with gr.Row():
|
| 109 |
+
# LEFT COLUMN: Input Panel
|
| 110 |
+
with gr.Column(scale=2):
|
| 111 |
+
gr.Markdown("### 📥 Error Input")
|
| 112 |
+
|
| 113 |
+
error_input = gr.Textbox(
|
| 114 |
label="Error Message / Stack Trace",
|
| 115 |
placeholder="Paste your error message, stack trace, or describe the bug...",
|
| 116 |
lines=8,
|