A-New-Day-001's picture
Update screens/index.py
be29542
raw
history blame contribute delete
No virus
990 Bytes
from screens.search import Search_Property
from screens.chat_bot import run_chatbot
from screens.chat_bot_2 import run_chatbot_2
from screens.analysis import report_analysis
from screens.predict import predict_page
from utils.index import get_hash
def get_routes():
screens = [
{
"component": predict_page,
"name": "Price Prediction",
"icon": "piggy-bank"
},
{
"component": report_analysis,
"name": "Report Analysis",
"icon": "bi-bar-chart-line"
},
{
"component": Search_Property,
"name": "Search",
"icon": "search"
},
{
"component": run_chatbot,
"name": "Law/News chatbot",
"icon": "chat"
},
{
"component": run_chatbot_2,
"name": "Real Estate chatbot",
"icon": "chat-dots"
}
]
return get_hash(screens)