File size: 535 Bytes
f4bec4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
from streamlit_option_menu import option_menu
from page1 import text
from page2 import image
def main():

    st.title("Chat With Gemini")

    with st.sidebar:
        selection = option_menu(
        menu_title="Main Menu",
        options=["Text Model", "Image Model"],
        icons=["pencil", "image"],
        menu_icon="cast",
        default_index=0
        )

    if selection == "Text Model":
        text()

    elif selection == "Image Model":
        image()


if __name__ == '__main__':
    main()