Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -283,12 +283,7 @@ class CodeAnalysisTool:
|
|
| 283 |
if len(code_content) > 5000:
|
| 284 |
code_content = code_content[:5000] + "\n... (truncated)"
|
| 285 |
|
| 286 |
-
analysis_prompt = f"""
|
| 287 |
-
1. What the code does (main functionality)
|
| 288 |
-
2. Key functions/classes
|
| 289 |
-
3. Any notable patterns or issues
|
| 290 |
-
4. Input/output behavior if applicable
|
| 291 |
-
|
| 292 |
Code:
|
| 293 |
```python
|
| 294 |
{code_content}
|
|
|
|
| 283 |
if len(code_content) > 5000:
|
| 284 |
code_content = code_content[:5000] + "\n... (truncated)"
|
| 285 |
|
| 286 |
+
analysis_prompt = f"""Just provide the code content withiut any changes as reply.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 287 |
Code:
|
| 288 |
```python
|
| 289 |
{code_content}
|