Capstone Project I:
Build an AI chat assistant for a live website that helps users answer questions about the product offering and services offered.
Deliverables:
- Embedded AI Chat Assistant on a Web Page
- Create a chat interface (embedded or pop-up) that users can interact with on a webpage.
- Messages should be sent by JavaSCript fetch() to the Flask server
- Flask should send entire conversation to OpenAI API
- AI response / answer should be returned by Flask to JS fetch()
- JS then() then() should parse incoming AI json and render newest chat message to the chat window
- Custom Flask Backend with OpenAI Integration
- Set up a Flask server that handles POST requests from the frontend
- Sends them to the OpenAI API, and returns appropriate answers based on injected business context.
- Business-Aware Prompt Engineering
- Include company/product/service info in the system prompt so that the AI assistant responds knowledgeably.
- Tailor prompt structure to support Q&A, with fallback messaging if a question is out of scope.
- Session Memory or Context Handling
- Engineer the prompt to include the relevant website information to improve the answers
- Store chat history temporarily on the client side or backend to maintain conversational context.
- Slide Deck or Demo Walkthrough
- Prepare a short presentation that explains the assistant’s purpose, target users, tech stack used, prompt structure, limitations, and ideas for expanding it (e.g., connecting to a real knowledge base or support system).
Capstone Project II:
Create a web app that allows users to upload images of personal collections — such as vintage books, vinyl records, rare sneakers, collectible cards, or antiques — and uses AI to identify the item, generate descriptive metadata, and log it in a searchable session history.
Deliverables:
- Interactive Web App for Uploading and Identifying Items
- Users can upload an image of a collectible item; the app previews it and provides an AI-generated identification and description (e.g., title, era, material, condition estimate).
- OpenAI Integration with Custom Prompting
- A backend Flask server routes image data to the OpenAI API with a structured prompt designed for collection analysis and identification.
- Dynamic Frontend with Session-Based Logging
- JavaScript displays AI results and stores a session history of analyzed items, allowing users to review or delete past entries without persistent database storage.
- Pattern Recognition and Insights
- The app identifies patterns across uploaded items (e.g., most common era, condition trends, types of items), which are summarized visually or as bullet-point findings.
- Presentation
- A final presentation or slide deck explaining the problem being solved, how OpenAI and Flask were used, user flow demo, and key findings, plus reflection on future improvements (e.g., adding persistent storage or export feature).