2023-04-08 20:26:32 +02:00
|
|
|
# AI Talks
|
2023-03-13 17:08:55 +01:00
|
|
|
|
2023-04-09 12:04:22 +02:00
|
|
|
[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://ai-talks.streamlit.app)
|
|
|
|
|
2023-04-09 11:38:53 +02:00
|
|
|
## ChatGPT Assistant via Streamlit
|
2023-03-16 11:45:37 +01:00
|
|
|
|
2023-04-09 12:04:22 +02:00
|
|
|
AI Talks is a Streamlit app, that ...
|
|
|
|
|
2023-04-09 12:18:29 +02:00
|
|
|
![](assets/demo/ai-talks.gif)
|
|
|
|
|
2023-04-09 12:04:22 +02:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
Clone the repository:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/dKosarevsky/AI-Talks.git
|
|
|
|
```
|
|
|
|
|
|
|
|
Install the required dependencies:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install -r requirements.txt
|
|
|
|
```
|
|
|
|
|
2023-04-09 12:10:43 +02:00
|
|
|
Add your API key into `.streamlit/secrets.toml`:
|
2023-04-09 12:04:22 +02:00
|
|
|
|
|
|
|
```toml
|
|
|
|
[api_credentials]
|
|
|
|
api_key = "sk-..."
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
To run the app use the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
bash run.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
Another way:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
streamlit run chat.py
|
|
|
|
```
|
|
|
|
|
|
|
|
## License
|
2023-03-16 11:45:37 +01:00
|
|
|
|
2023-04-09 12:04:22 +02:00
|
|
|
This project is released under the MIT License.
|