Spaces:
Running
Running
hugforziio
commited on
Commit
•
4a42e36
1
Parent(s):
3414968
Update app.py
Browse files
app.py
CHANGED
@@ -233,6 +233,11 @@ def load_saved_prompt(title):
|
|
233 |
pass
|
234 |
|
235 |
|
|
|
|
|
|
|
|
|
|
|
236 |
css = """
|
237 |
.table-wrap .cell-wrap input {min-width:80%}
|
238 |
#api-key-textbox textarea {filter:blur(8px); transition: filter 0.25s}
|
@@ -247,6 +252,8 @@ with gradio.Blocks(title="ChatGPT", css=css) as demo:
|
|
247 |
|
248 |
with gradio.Tab("ChatGPT"):
|
249 |
|
|
|
|
|
250 |
with gradio.Row():
|
251 |
with gradio.Box():
|
252 |
with gradio.Column(scale=12):
|
|
|
233 |
pass
|
234 |
|
235 |
|
236 |
+
header_intro = """
|
237 |
+
Try our new ChatGPT Batch Tool: [Here](https://huggingface.co/spaces/hugforziio/chat-gpt-batch)
|
238 |
+
"""
|
239 |
+
|
240 |
+
|
241 |
css = """
|
242 |
.table-wrap .cell-wrap input {min-width:80%}
|
243 |
#api-key-textbox textarea {filter:blur(8px); transition: filter 0.25s}
|
|
|
252 |
|
253 |
with gradio.Tab("ChatGPT"):
|
254 |
|
255 |
+
gradio.Markdown(header_intro)
|
256 |
+
|
257 |
with gradio.Row():
|
258 |
with gradio.Box():
|
259 |
with gradio.Column(scale=12):
|