Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -144,7 +144,7 @@ def append_file(file_path, content):
|
|
144 |
return "Error occurred while appending to file."
|
145 |
|
146 |
|
147 |
-
title = """<h1 align="center">
|
148 |
description = """
|
149 |
## ChatGPT Dataset References: ๐
|
150 |
- **WebText:** A dataset of web pages crawled from domains on the Alexa top 5,000 list. This dataset was used to pretrain GPT-2.
|
@@ -165,7 +165,7 @@ description = """
|
|
165 |
with gr.Blocks(css = """#col_container {width: 100%; margin-left: auto; margin-right: auto;} #chatbot {height: 400px; overflow: auto;}""") as demo:
|
166 |
gr.HTML(title)
|
167 |
with gr.Column(elem_id = "col_container"):
|
168 |
-
inputs = gr.Textbox(placeholder= "
|
169 |
chatbot = gr.Chatbot(elem_id='chatbot')
|
170 |
state = gr.State([])
|
171 |
b1 = gr.Button()
|
|
|
144 |
return "Error occurred while appending to file."
|
145 |
|
146 |
|
147 |
+
title = """<h1 align="center">Generative AI Intelligence Amplifier - GAIA</h1>"""
|
148 |
description = """
|
149 |
## ChatGPT Dataset References: ๐
|
150 |
- **WebText:** A dataset of web pages crawled from domains on the Alexa top 5,000 list. This dataset was used to pretrain GPT-2.
|
|
|
165 |
with gr.Blocks(css = """#col_container {width: 100%; margin-left: auto; margin-right: auto;} #chatbot {height: 400px; overflow: auto;}""") as demo:
|
166 |
gr.HTML(title)
|
167 |
with gr.Column(elem_id = "col_container"):
|
168 |
+
inputs = gr.Textbox(placeholder= "Paste Prompt with Context Data Here", label= "Type an input and press Enter")
|
169 |
chatbot = gr.Chatbot(elem_id='chatbot')
|
170 |
state = gr.State([])
|
171 |
b1 = gr.Button()
|