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
- Host: GitHub
- URL: https://github.com/tom-doerr/ai_data_analyser
- Owner: tom-doerr
- License: mit
- Created: 2022-04-26T08:11:22.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-10T03:38:12.000Z (about 4 years ago)
- Last Synced: 2025-05-07T01:02:17.485Z (about 1 year ago)
- Language: Python
- Size: 37.1 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AI Data Analyser

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`.