Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 698 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 698 Bytes

st-chat

Streamlit Component, for a Chat-bot UI, example app

authors - @yashppawar & @YashVardhan-AI

Installation

Install streamlit-chat with pip

pip install streamlit-chat 

usage, import the message function from streamlit_chat

import streamlit as st
from streamlit_chat import message

message("My message") 
message("Hello bot!", is_user=True)  # align's the message to the right

Screenshot

chatbot-og