Metadata-Version: 2.1
Name: streamlit-chitchat
Version: 0.1.6
Summary: 
Author: k4144
Author-email: github.k4144@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

<br>

  

<img  src="https://user-images.githubusercontent.com/7164864/217935870-c0bc60a3-6fc0-4047-b011-7b4c59488c91.png"  alt="Streamlit logo"  style="margin-top:50px"></img>

  

# streamlit-chitchat

  

**make chat messages easier to style in streamlit**

  

streamlit-chitchat lets you style messages from the user and responses from a bot differently. you can also update an existing message, so that streamed tokens render as they are received. 


  

## Installation

  

Open a terminal and run:

  

```bash

$  pip  install  streamlit-chitchat

```

## example use
  

in your streamlit app, insert:

  

```bash

from streamlit-chitchat.chitchat import message
message('hello, how are you?', is_user=True)
bot=message()
for w in 'excellent! have any plans for tonight?'.split(' '):
	bot.write(w+' ')
```

## example styling
  
#### use an avatar:
```bash

message('hello, how are you?', is_user=True, avatar='images/test.png')
```

you can also use image urls, svg code or svg files 




#### set background color:
```bash

message('hello, how are you?', is_user=True, background='rgb(150,160,150)')
```

In  order to make the color lighter, you can use rgb with alpha value: background='rgb(130,120,100, 0.5)'

#### set font size:
```bash

message('hello, how are you?', is_user=True, font_size='1rem')
```

#### other values

font color, width , or margin 
```bash
message('hello', color='rgb(20,20,30)', width='70%', margin='5px')
```


