File size: 1,264 Bytes
e9e507c
0efcae6
2053de8
2495110
 
da4ef65
 
e9e507c
da4ef65
 
 
 
61e7204
 
 
da4ef65
0efcae6
 
 
2495110
 
8b4817a
2495110
da4ef65
2495110
b5c01e4
61e7204
 
b5c01e4
9fdb387
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
28
29
30
31
import gradio as gr
from Tabs.Gemini_Chabot_Stable import gemini_chatbot, clear_chat_button, undo_chat_button, clear_chat_history, undo_chat, TITLE, NOTICE, ERRORS, FUTURE_IMPLEMENTATIONS, ABOUT

with gr.Blocks(theme=gr.themes.Soft()) as demo:
    # ============================== Stable - START ==============================
    with gr.Tab("Chat with Gemini 1.5 Flash"):
        gr.HTML(TITLE)
        with gr.Row():
            gr.Markdown(NOTICE)
            gr.Markdown(ABOUT)
            gr.Markdown(ERRORS)
            gr.Markdown(FUTURE_IMPLEMENTATIONS)
        gemini_chatbot.render()
        clear_chat_button.click(
            fn=clear_chat_history
        )
        undo_chat_button.click(
            fn=undo_chat
        )
    # ============================== Stable - END ==============================

    with gr.Tab("Chat with Gemma 2"):
        gr.HTML("""<h1 align="center">Still in development</h1>""")

    # ============================== Nightly - START ==============================
    with gr.Tab("Nightly -- Chat with Gemini 1.5"):
        gr.HTML("""<h1 align="center">Still in development</h1>""")
    # ============================== Nightly - END ==============================

demo.queue().launch(debug=True, show_error=True)