This is a simple app meant to replicate some of the code interpreter capabilities of ChatGPT: it's a chatbot capable of running Python code on the browser. I created because I wanted to analyze and visualize data by "chatting" with it in plain English (see deepshet)
If you're curious, check out the step-by-step tutorial.
- Install Python 3.10.
- Install Poetry.
- From the root folder of the project, install the dependencies:
poetry config virtualenvs.in-project true poetry install
- Update .env-example with your OpenAI secret key and save it as
.env
- To start the app, open a terminal in
src/app
and runlitestar run --reload --debug
- Go to
http://127.0.0.1
.
The app looks like this:
MIT.