Spaces:
Runtime error
Runtime error
EmicoBinsfinder
commited on
Commit
β’
3fbe817
1
Parent(s):
f076e4f
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,8 @@ def bot(history):
|
|
16 |
with gr.Blocks() as demo:
|
17 |
|
18 |
gr.Markdown("""
|
|
|
|
|
19 |
Hey there, genius!
|
20 |
|
21 |
Welcome to our demo! We've trained Meta's Llama on almost 200k data entries in the question/answer format.
|
@@ -24,7 +26,7 @@ with gr.Blocks() as demo:
|
|
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!
|
@@ -34,6 +36,9 @@ with gr.Blocks() as demo:
|
|
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 |
|
38 |
|
39 |
""")
|
@@ -52,13 +57,15 @@ with gr.Blocks() as demo:
|
|
52 |
|
53 |
with gr.Tab("Description Generator"):
|
54 |
gr.Markdown("""
|
55 |
-
You can use this tool to
|
56 |
|
57 |
Example input: A device to help the visually impaired using proprioception.
|
58 |
|
59 |
Output:
|
60 |
""")
|
61 |
with gr.Row(scale=1, min_width=600):
|
|
|
|
|
62 |
text1 = gr.Textbox(label="Input",
|
63 |
placeholder='Type in your idea here!')
|
64 |
text2 = gr.Textbox(label="Output")
|
|
|
16 |
with gr.Blocks() as demo:
|
17 |
|
18 |
gr.Markdown("""
|
19 |
+
#CLAIMED - A GENERATIVE TOOLKIT FOR PATENT ATTORNEYS
|
20 |
+
|
21 |
Hey there, genius!
|
22 |
|
23 |
Welcome to our demo! We've trained Meta's Llama on almost 200k data entries in the question/answer format.
|
|
|
26 |
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
|
27 |
|
28 |
|
29 |
+
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!
|
30 |
|
31 |
|
32 |
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!
|
|
|
36 |
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.
|
37 |
|
38 |
|
39 |
+
If you
|
40 |
+
|
41 |
+
|
42 |
|
43 |
|
44 |
""")
|
|
|
57 |
|
58 |
with gr.Tab("Description Generator"):
|
59 |
gr.Markdown("""
|
60 |
+
Patent descriptions are loooonggg and boring! You can use this tool to
|
61 |
|
62 |
Example input: A device to help the visually impaired using proprioception.
|
63 |
|
64 |
Output:
|
65 |
""")
|
66 |
with gr.Row(scale=1, min_width=600):
|
67 |
+
|
68 |
+
|
69 |
text1 = gr.Textbox(label="Input",
|
70 |
placeholder='Type in your idea here!')
|
71 |
text2 = gr.Textbox(label="Output")
|