hashiruAI / src /utils /streamlit_interface.py
helloparthshah's picture
Updating to use webUI
434b328
raw
history blame
189 Bytes
from src.utils.singleton import singleton
def get_user_message(message):
user_input = input(message)
return user_input
def output_assistant_response(response):
print(response)