write the app.py and upload data
Browse files
app.py
CHANGED
@@ -176,6 +176,16 @@ def display(access_key):
|
|
176 |
|
177 |
|
178 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
|
180 |
with gr.Column(variant="panel"):
|
181 |
chatbot = gr.Chatbot()
|
|
|
176 |
|
177 |
|
178 |
with gr.Blocks() as demo:
|
179 |
+
|
180 |
+
gr.Markdown(
|
181 |
+
"""
|
182 |
+
Hello friends,
|
183 |
+
|
184 |
+
Thanks for your attention on this space. But this space is for my own use, i.e., building a dataset with answers from ChatGPT, and the access key for runtime feedback is only shared to my colleagues.
|
185 |
+
|
186 |
+
If you want to ask ChatGPT on Huggingface just as the title says, you can try this [one](https://huggingface.co/spaces/zhangjf/chatbot) I built for public.
|
187 |
+
"""
|
188 |
+
)
|
189 |
|
190 |
with gr.Column(variant="panel"):
|
191 |
chatbot = gr.Chatbot()
|