An open API service indexing awesome lists of open source software.

https://github.com/tom-doerr/ai_data_analyser

Analyse tabular data using OpenAI Codex
https://github.com/tom-doerr/ai_data_analyser

Last synced: about 1 year ago
JSON representation

Analyse tabular data using OpenAI Codex

Awesome Lists containing this project

README

          

AI Data Analyser




Repository's starts
Issues
License

Latest commit
GitHub repository size

1. To run the streamlit app locally, you need to add your OpenAI API key in
`.streamlit/secrets.toml`.

## With docker (recommended)

2. Build the docker container with `docker build . -t ai_data_analyser_image`.

3. Run the docker container with `docker run -p 8501:8501 -v $PWD:/mounted ai_data_analyser_image bash -c 'cd /mounted; streamlit run streamlit_main.py'`

4. Open `localhost:8501` in your browser, you should now see the streamlit app.

## Without docker (not safe)

2. Install streamlit using `pip install streamlit`.

3. Run it using `streamlit run streamlit_main.py`.