Spaces:
Runtime error
Runtime error
Update App
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ def process_repository(url, model):
|
|
26 |
os.chdir(repo_name)
|
27 |
|
28 |
# Run your package command
|
29 |
-
subprocess.run(['gpt4readability', '.', '--function', 'readme', '--model', model])
|
30 |
|
31 |
# Open the README.md file and return its contents
|
32 |
with open('README.md', 'r') as readme_file:
|
|
|
26 |
os.chdir(repo_name)
|
27 |
|
28 |
# Run your package command
|
29 |
+
subprocess.run(['gpt4readability', '.', '--function', 'readme','--include-md', 'false', '--model', model])
|
30 |
|
31 |
# Open the README.md file and return its contents
|
32 |
with open('README.md', 'r') as readme_file:
|