saswatdas123 commited on
Commit
a476806
Β·
verified Β·
1 Parent(s): 6042a32

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -13
app.py CHANGED
@@ -1,16 +1,27 @@
1
  import streamlit as st
2
- import pandas as pd
3
- from services.multiapp import MultiApp
4
- from functools import partial
5
- from pages import ChatPDF_Ingestion, ChatPDF_Reader, Intelligent_Chatbot, Patent_Ingestion, Patent_Search, Prompt_Engineer, About
6
 
7
 
8
- app = MultiApp()
9
- app.add_app('About', About.app)
10
- app.add_app('ChatPDF Ingestion', ChatPDF_Ingestion.app)
11
- app.add_app('ChatPDF Reader', Intelligent_Chatbot.app)
12
- app.add_app('Intelligent Chatbot', Intelligent_Chatbot.app)
13
- app.add_app('Patent Ingestion', Patent_Ingestion.app)
14
- app.add_app('Patent Search', Patent_Search.app)
15
- app.add_app('Prompt Engineer', Prompt_Engineer.app)
16
- app.run()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
 
 
 
 
2
 
3
 
4
+
5
+ st.set_page_config(page_title="About")
6
+
7
+ st.write("# Welcome to PatentGuru! πŸ‘‹")
8
+ st.sidebar.success("Select a demo above")
9
+
10
+ st.markdown(
11
+ """
12
+ PatentGuru is an patent search assistant built specifically for
13
+ building patents on any subject. The project uses data from Google patents covering a gamut of 1.3 mn granted patents
14
+ across all categories
15
+ **πŸ‘ˆ Select a demo from the dropdown on the left** to see some examples
16
+ of what PatentGuru can do!
17
+ ### Want to learn more about patents?
18
+ - Check out [United States Patent and Trademark office](https://www.uspto.gov/)
19
+ - Jump into the Open Source Documentation that was used for embedding [AI-Growth-Lab](https://huggingface.co/AI-Growth-Lab/PatentSBERTa)
20
+ - Ask a question in our [community
21
+ forums](https://discuss.streamlit.io)
22
+ ### See more on tensor flow datasets
23
+ - Use a tensor flow dataset to [analyze the patent categorization and abstract
24
+ Dataset](hhttps://www.tensorflow.org/datasets/catalog/big_patent)
25
+ - Explore a [European Patent Office](https://www.epo.org/en)
26
+ """
27
+ )