Update app.py
Browse files
app.py
CHANGED
@@ -53,5 +53,5 @@ with gr.Blocks() as demo:
|
|
53 |
chat_btn.click(chat_with_gpt, inputs=[openai_api_key,chat_model,prompt], outputs=response)
|
54 |
fact_check_btn.click(fact_check, inputs=[openai_api_key,serper_api_key,scraper_api_key,fact_check_model,prompt,response,category], outputs=fact_check_result)
|
55 |
|
56 |
-
demo.launch(
|
57 |
|
|
|
53 |
chat_btn.click(chat_with_gpt, inputs=[openai_api_key,chat_model,prompt], outputs=response)
|
54 |
fact_check_btn.click(fact_check, inputs=[openai_api_key,serper_api_key,scraper_api_key,fact_check_model,prompt,response,category], outputs=fact_check_result)
|
55 |
|
56 |
+
demo.launch()
|
57 |
|