PatentToolkit / app.py
EmicoBinsfinder's picture
Update app.py
9907d16
raw
history blame
4.05 kB
import gradio as gr
def add_text(history, text):
history = history + [(text, None)]
return history, ""
def add_file(history, file):
history = history + [((file.name,), None)]
return history
def bot(history):
response = "**That's cool!**"
history[-1][1] = response
return history
with gr.Blocks() as demo:
gr.Markdown("""
Hello there prospective inventor!
Welcome to our demo! We've trained Meta's Llama on almost 200k data entries in the question/answer format.
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
If you are interested in using a more powerful model that we have trained, please get in touch!
""")
with gr.Tab("Claimed Ideator"):
gr.Markdown("""
You can use this tool to expand your idea using Claim Language.
Example input: A device to help the visually impaired using proprioception.
Output:
""")
text_input = gr.Textbox()
text_output = gr.Textbox()
text_button = gr.Button("")
with gr.Row():
gr.Markdown("""
You can use this tool to expand your idea using Claim Language.
Example input: A device to help the visually impaired using proprioception.
Output:
""")
with gr.Column(scale=0.85):
txt = gr.Textbox(
show_label=False,
placeholder="Enter text and press enter, or upload an image",
).style(container=False)
with gr.Tab("Description Generator"):
gr.Markdown("""
You can use this tool to turn a claim into a
Example input: A device to help the visually impaired using proprioception.
Output:
""")
with gr.Row(scale=1, min_width=600):
text1 = gr.Textbox(label="Input",
placeholder='Type in your idea here!')
text2 = gr.Textbox(label="Output")
with gr.Tab("Knowledge Graph"):
gr.Markdown("""
Are you more of a visual type? Use this tool to generate graphical representations of your ideas and how their features interlink.
Example input: A device to help the visually impaired using proprioception.
Output:
""")
with gr.Row(scale=1, min_width=600):
text1 = gr.Textbox(label="Input",
placeholder='Type in your idea here!')
text2 = gr.Textbox(label="Output")
with gr.Tab("Claim Text Infill"):
gr.Markdown("""
You can use this tool to expand your idea using Claim Language.
Example input: A device to help the visually impaired using proprioception.
Output:
""")
with gr.Row(scale=1, min_width=600):
gr.Markdown('')
text1 = gr.Textbox(label="Input",
placeholder='Type in your idea here!')
text2 = gr.Textbox(label="Output")
with gr.Tab("Prosecution Ideator"):
gr.Markdown("""
Below is our
Example input: A device to help the visually impaired using proprioception.
Output:
""")
with gr.Row(scale=1, min_width=600):
text1 = gr.Textbox(label="Input",
placeholder='Type in your idea here!')
text2 = gr.Textbox(label="Output")
chatbot = gr.Chatbot([], elem_id="Claimed Assistant").style(height=500)
with gr.Row():
with gr.Column(scale=0.85):
txt = gr.Textbox(
show_label=False,
placeholder="Enter text and press enter, or upload an image",
).style(container=False)
with gr.Column(scale=0.15, min_width=0):
btn = gr.UploadButton("πŸ“", file_types=["image", "video", "audio"])
txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(
bot, chatbot, chatbot
)
demo.launch()