Spaces:
Runtime error
Runtime error
EmicoBinsfinder
commited on
Commit
·
38098e8
1
Parent(s):
30e9ac0
Update app.py
Browse files
app.py
CHANGED
@@ -195,19 +195,7 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
195 |
|
196 |
""")
|
197 |
|
198 |
-
|
199 |
-
# HAVE AN IDEA? GET IT CLAIMED
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
|
204 |
-
|
205 |
-
If you are interested in using a more powerful model that we have trained, or you have any suggestions of features you would like to see us add, please get in touch!
|
206 |
-
|
207 |
-
As far as data is concerned, you have nothing to worry about! We don't store any of your inputs to use for further training, we're not OpenAI 👀. We'd just like to know if this is something people would be interested in using!
|
208 |
-
|
209 |
-
""")
|
210 |
-
|
211 |
chatbot = gr.Chatbot([], elem_id="Claimed Assistant").style(height=500)
|
212 |
with gr.Row():
|
213 |
with gr.Column(scale=0.85):
|
@@ -222,4 +210,16 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
222 |
generateresponse, chatbot, chatbot
|
223 |
)
|
224 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
demo.launch()
|
|
|
195 |
|
196 |
""")
|
197 |
|
198 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
chatbot = gr.Chatbot([], elem_id="Claimed Assistant").style(height=500)
|
200 |
with gr.Row():
|
201 |
with gr.Column(scale=0.85):
|
|
|
210 |
generateresponse, chatbot, chatbot
|
211 |
)
|
212 |
|
213 |
+
gr.Markdown("""
|
214 |
+
# HAVE AN IDEA? GET IT CLAIMED
|
215 |
+
|
216 |
+
|
217 |
+
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
|
218 |
+
|
219 |
+
If you are interested in using a more powerful model that we have trained, or you have any suggestions of features you would like to see us add, please get in touch!
|
220 |
+
|
221 |
+
As far as data is concerned, you have nothing to worry about! We don't store any of your inputs to use for further training, we're not OpenAI 👀. We'd just like to know if this is something people would be interested in using!
|
222 |
+
|
223 |
+
""")
|
224 |
+
|
225 |
demo.launch()
|