├── .env.example ├── M1 ├── Lesson_01 │ └── Lab1 │ │ └── M1Lab1_solution.ipynb ├── Lesson_02 │ ├── M1L2V2.py │ ├── M1L2V2_starting.py │ ├── M1L2V3.py │ └── M1L2V4.py ├── Lesson_03 │ ├── Lab2 │ │ ├── M1Lab2_solution.py │ │ ├── M1Lab2_starting.py │ │ └── requirements.txt │ ├── M1L3V1.py │ ├── M1L3V1_starting.py │ ├── M1L3V2_altair.py │ ├── M1L3V2_matplotlib.py │ ├── M1L3V2_plotly.py │ ├── M1L3V2_streamlit_plot.py │ └── deploy │ │ ├── customer_reviews.csv │ │ ├── requirements.txt │ │ └── streamlit_app.py └── requirements.txt ├── M2 ├── Lesson_01 │ ├── Lab1 │ │ ├── M2Lab1_solution.ipynb │ │ └── shipping_logs.csv │ ├── M2L1V3.ipynb │ ├── M2L1V4.ipynb │ ├── M2L1V5.ipynb │ └── M2L1V6.ipynb └── Lesson_02 │ ├── Lab2 │ └── M2Lab2_solution.py │ ├── M2L2V1.ipynb │ ├── M2L2V2.ipynb │ ├── M2L2V3.ipynb │ └── M2L2V4.ipynb ├── M3 ├── Lesson_01 │ └── deploy │ │ ├── requirements.txt │ │ └── streamlit_app.py └── Lesson_03 │ ├── Lab2 │ ├── M3Lab2.py │ ├── example_chatbot_with_history.py │ └── example_tabs.py │ ├── M3L3V2.ipynb │ └── M3L3V4.ipynb ├── README.md └── data ├── README.md ├── customer_reviews.csv ├── customer_reviews_docx.zip └── shipping_logs.csv /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY="your_example_key" 2 | -------------------------------------------------------------------------------- /M1/Lesson_01/Lab1/M1Lab1_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_01/Lab1/M1Lab1_solution.ipynb -------------------------------------------------------------------------------- /M1/Lesson_02/M1L2V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_02/M1L2V2.py -------------------------------------------------------------------------------- /M1/Lesson_02/M1L2V2_starting.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /M1/Lesson_02/M1L2V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_02/M1L2V3.py -------------------------------------------------------------------------------- /M1/Lesson_02/M1L2V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_02/M1L2V4.py -------------------------------------------------------------------------------- /M1/Lesson_03/Lab2/M1Lab2_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/Lab2/M1Lab2_solution.py -------------------------------------------------------------------------------- /M1/Lesson_03/Lab2/M1Lab2_starting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/Lab2/M1Lab2_starting.py -------------------------------------------------------------------------------- /M1/Lesson_03/Lab2/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | pandas 3 | plotly 4 | openai 5 | python-dotenv 6 | -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V1.py -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V1_starting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V1_starting.py -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V2_altair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V2_altair.py -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V2_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V2_matplotlib.py -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V2_plotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V2_plotly.py -------------------------------------------------------------------------------- /M1/Lesson_03/M1L3V2_streamlit_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/M1L3V2_streamlit_plot.py -------------------------------------------------------------------------------- /M1/Lesson_03/deploy/customer_reviews.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/deploy/customer_reviews.csv -------------------------------------------------------------------------------- /M1/Lesson_03/deploy/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | pandas -------------------------------------------------------------------------------- /M1/Lesson_03/deploy/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/Lesson_03/deploy/streamlit_app.py -------------------------------------------------------------------------------- /M1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M1/requirements.txt -------------------------------------------------------------------------------- /M2/Lesson_01/Lab1/M2Lab1_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/Lab1/M2Lab1_solution.ipynb -------------------------------------------------------------------------------- /M2/Lesson_01/Lab1/shipping_logs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/Lab1/shipping_logs.csv -------------------------------------------------------------------------------- /M2/Lesson_01/M2L1V3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/M2L1V3.ipynb -------------------------------------------------------------------------------- /M2/Lesson_01/M2L1V4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/M2L1V4.ipynb -------------------------------------------------------------------------------- /M2/Lesson_01/M2L1V5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/M2L1V5.ipynb -------------------------------------------------------------------------------- /M2/Lesson_01/M2L1V6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_01/M2L1V6.ipynb -------------------------------------------------------------------------------- /M2/Lesson_02/Lab2/M2Lab2_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_02/Lab2/M2Lab2_solution.py -------------------------------------------------------------------------------- /M2/Lesson_02/M2L2V1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_02/M2L2V1.ipynb -------------------------------------------------------------------------------- /M2/Lesson_02/M2L2V2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_02/M2L2V2.ipynb -------------------------------------------------------------------------------- /M2/Lesson_02/M2L2V3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_02/M2L2V3.ipynb -------------------------------------------------------------------------------- /M2/Lesson_02/M2L2V4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M2/Lesson_02/M2L2V4.ipynb -------------------------------------------------------------------------------- /M3/Lesson_01/deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_01/deploy/requirements.txt -------------------------------------------------------------------------------- /M3/Lesson_01/deploy/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_01/deploy/streamlit_app.py -------------------------------------------------------------------------------- /M3/Lesson_03/Lab2/M3Lab2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_03/Lab2/M3Lab2.py -------------------------------------------------------------------------------- /M3/Lesson_03/Lab2/example_chatbot_with_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_03/Lab2/example_chatbot_with_history.py -------------------------------------------------------------------------------- /M3/Lesson_03/Lab2/example_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_03/Lab2/example_tabs.py -------------------------------------------------------------------------------- /M3/Lesson_03/M3L3V2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_03/M3L3V2.ipynb -------------------------------------------------------------------------------- /M3/Lesson_03/M3L3V4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/M3/Lesson_03/M3L3V4.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/data/README.md -------------------------------------------------------------------------------- /data/customer_reviews.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/data/customer_reviews.csv -------------------------------------------------------------------------------- /data/customer_reviews_docx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/data/customer_reviews_docx.zip -------------------------------------------------------------------------------- /data/shipping_logs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit/HEAD/data/shipping_logs.csv --------------------------------------------------------------------------------