Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,6 @@ import os
|
|
20 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
21 |
GITHUB_TOKEN = os.environ.get("GITHUB_TOKEN")
|
22 |
GEMINI_API_KEY = os.environ.get("GEMINI_API_KEY")
|
23 |
-
os.system("pip install -q -U google-genai")
|
24 |
|
25 |
|
26 |
############################################
|
@@ -288,4 +287,4 @@ with gr.Blocks() as demo:
|
|
288 |
|
289 |
chat_btn.click(fn=process_chat, inputs=[github_url_input, file_dropdown, chat_query_input], outputs=[chat_output])
|
290 |
|
291 |
-
demo.launch(share=True
|
|
|
20 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
21 |
GITHUB_TOKEN = os.environ.get("GITHUB_TOKEN")
|
22 |
GEMINI_API_KEY = os.environ.get("GEMINI_API_KEY")
|
|
|
23 |
|
24 |
|
25 |
############################################
|
|
|
287 |
|
288 |
chat_btn.click(fn=process_chat, inputs=[github_url_input, file_dropdown, chat_query_input], outputs=[chat_output])
|
289 |
|
290 |
+
demo.launch(share=True)
|