Spaces:
Runtime error
Runtime error
Sami Halawa
Claude
commited on
Commit
·
32c35f0
1
Parent(s):
807c6c7
Fix app launch and add missing requirements
Browse files- Simplify Gradio launch configuration
- Add missing dependencies to requirements.txt
- Ensure app can start without networking issues
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
- app.py +1 -1
- requirements.txt +4 -1
app.py
CHANGED
@@ -271,4 +271,4 @@ To address challenges in remote work collaboration (such as team productivity, c
|
|
271 |
)
|
272 |
|
273 |
if __name__ == "__main__":
|
274 |
-
demo.launch(
|
|
|
271 |
)
|
272 |
|
273 |
if __name__ == "__main__":
|
274 |
+
demo.launch()
|
requirements.txt
CHANGED
@@ -3,4 +3,7 @@ tiktoken
|
|
3 |
anthropic
|
4 |
backoff
|
5 |
PyPDF2
|
6 |
-
xlsxwriter
|
|
|
|
|
|
|
|
3 |
anthropic
|
4 |
backoff
|
5 |
PyPDF2
|
6 |
+
xlsxwriter
|
7 |
+
gradio
|
8 |
+
pandas
|
9 |
+
requests
|