Metadata-Version: 2.1
Name: robin-chat
Version: 0.0.2.2
Summary: Streamlit component for rendering RobinAI chat messages
Home-page: https://github.com/chrisdoyleie/robin-chat
Author: Chris Doyle
Author-email: chris@robinai.co.uk
Keywords: chat streamlit streamlit-component
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# robin-chat

Custom streamlit component. Prototype use only.

## Installation

Install `robin-chat` with pip
```bash
pip install robin-chat 
```

usage, import the `message` function from `robin_chat`
```py
import streamlit as st
from robin_chat import message

message("Hey I'm Robin copilot, how can I help?") 
message("Hello Robin!", is_user=True)  # align's the message to the right
```
