File size: 627 Bytes
f2302df
0dd18b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
import pandas as pd
from services.multiapp import MultiApp
from functools import partial
from pages import ChatPDF_Ingestion, ChatPDF_Reader, Intelligent_Chatbot, Patent_Ingestion, Patent_Search, Prompt_Engineer, About


app = MultiApp()
app.add_app('About', About.app)
app.add_app('ChatPDF Ingestion', ChatPDF_Ingestion.app)
app.add_app('ChatPDF Reader', Intelligent_Chatbot.app)
app.add_app('Intelligent Chatbot', Intelligent_Chatbot.app)
app.add_app('Patent Ingestion', Patent_Ingestion.app)
app.add_app('Patent Search', Patent_Search.app)
app.add_app('Prompt Engineer', Prompt_Engineer.app)
app.run()