|
import streamlit as st |
|
from streamlit_option_menu import option_menu |
|
from transformers import pipeline, Conversation |
|
|
|
pipe = pipeline(task="conversational", model="microsoft/DialoGPT-medium") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def chat(): |
|
if query := st.chat_input("Enter your message"): |
|
uquery = Conversation(query) |
|
response = pipe(uquery) |
|
with st.chat_message("assistant"): |
|
response.generated_responses[-1] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def dashboard(): |
|
|
|
with st.sidebar: |
|
selected = option_menu(None, ['Chat', "Logout"], |
|
icons=[π¬', "π"]) |
|
# if selected == 'Home': |
|
# homepage() |
|
if selected == 'Chat': |
|
chat() |
|
elif selected == 'Logout': |
|
st.session_state.user = None |
|
st.experimental_rerun() |
|
# elif selected == "Invoke Document": |
|
# invoke_document() |
|
# elif selected == "Invoke Audio": |
|
# invoke_audio() |
|
# elif selected == "Invoke Video": |
|
# invoke_video() |
|
# elif selected == "Invoke Image": |
|
# invoke_image() |
|
# elif selected == "Invoke Text": |
|
# invoke_text() |
|
|