EmicoBinsfinder commited on
Commit
4ca8440
β€’
1 Parent(s): 5da4835

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py CHANGED
@@ -20,11 +20,18 @@ with gr.Blocks() as demo:
20
 
21
  Welcome to our demo! We've trained Meta's Llama on almost 200k data entries in the question/answer format.
22
 
 
23
  In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
24
 
 
25
  If you are interested in using a more powerful model that we have trained, please get in touch!
26
 
 
27
  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!
 
 
 
 
28
 
29
  """)
30
 
@@ -101,6 +108,17 @@ with gr.Blocks() as demo:
101
  placeholder='Type in your idea here!')
102
  text2 = gr.Textbox(label="Output")
103
 
 
 
 
 
 
 
 
 
 
 
 
104
 
105
  chatbot = gr.Chatbot([], elem_id="Claimed Assistant").style(height=500)
106
  with gr.Row():
 
20
 
21
  Welcome to our demo! We've trained Meta's Llama on almost 200k data entries in the question/answer format.
22
 
23
+
24
  In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
25
 
26
+
27
  If you are interested in using a more powerful model that we have trained, please get in touch!
28
 
29
+
30
  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!
31
+
32
+ Please note that this is for research purposes and shouldn't be used commercially
33
+
34
+ None of the outputs should be taken as solid legal advice. If you are an inventor looking to patent an invention, always seek the help of a registered patent attorney!!
35
 
36
  """)
37
 
 
108
  placeholder='Type in your idea here!')
109
  text2 = gr.Textbox(label="Output")
110
 
111
+
112
+ gr.Markdown("""
113
+
114
+ Do you want a bit more freedom over the outputs you generate? No worries, you can use a chatbot version of our model below. You can ask it anything by the way, just try to keep it PG.
115
+
116
+ If you're concerned about an output from the model, hit the flag button and we will use that information to improve the model.
117
+
118
+
119
+
120
+ Output:
121
+ """)
122
 
123
  chatbot = gr.Chatbot([], elem_id="Claimed Assistant").style(height=500)
124
  with gr.Row():