Update app.py
Browse files
app.py
CHANGED
|
@@ -77,7 +77,7 @@ def process_with_gemini(file_content, gemini_api_key):
|
|
| 77 |
5. Provide no other information such as greeting or summary as the purpose is to catalog and document all open source licenses used.
|
| 78 |
"""
|
| 79 |
|
| 80 |
-
response = model.generate_content(prompt)
|
| 81 |
return response.text
|
| 82 |
|
| 83 |
def process_input(github_url, personal_access_token, gemini_api_key):
|
|
|
|
| 77 |
5. Provide no other information such as greeting or summary as the purpose is to catalog and document all open source licenses used.
|
| 78 |
"""
|
| 79 |
|
| 80 |
+
response = model.generate_content(prompt, timeout=120)
|
| 81 |
return response.text
|
| 82 |
|
| 83 |
def process_input(github_url, personal_access_token, gemini_api_key):
|