Update app.py
Browse files
app.py
CHANGED
@@ -36,6 +36,6 @@ gr.close_all()
|
|
36 |
demo = gr.Interface(fn=invoke,
|
37 |
inputs = [gr.Textbox(label = "OpenAI API Key", lines = 1), gr.Textbox(label = "YouTube URL", lines = 1), gr.Textbox(label = "Prompt", lines = 1)],
|
38 |
outputs = [gr.Textbox(label = "Completion", lines = 1)],
|
39 |
-
title = "Generative AI - RAG",
|
40 |
description = description)
|
41 |
demo.launch()
|
|
|
36 |
demo = gr.Interface(fn=invoke,
|
37 |
inputs = [gr.Textbox(label = "OpenAI API Key", lines = 1), gr.Textbox(label = "YouTube URL", lines = 1), gr.Textbox(label = "Prompt", lines = 1)],
|
38 |
outputs = [gr.Textbox(label = "Completion", lines = 1)],
|
39 |
+
title = "Generative AI - LLM & RAG",
|
40 |
description = description)
|
41 |
demo.launch()
|