hashiruAI / src /manager /utils /streamlit_interface.py
helloparthshah's picture
refactor
2f85c93
raw
history blame contribute delete
197 Bytes
from src.manager.utils.singleton import singleton
def get_user_message(message):
user_input = input(message)
return user_input
def output_assistant_response(response):
print(response)