-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai_portfolio.html
More file actions
91 lines (88 loc) · 3.94 KB
/
ai_portfolio.html
File metadata and controls
91 lines (88 loc) · 3.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Basil Latif's AI Portfolio</title>
<meta name="description" content="AI Projects" />
<meta name="author" content="SitePoint" />
<link rel="stylesheet" href="styles.css" />
</head>
<!-- Header Section -->
<header>
<h1>Basil Latif's AI Portfolio</h1>
</header>
<!-- Navigation Bar -->
<nav class="topnav">
<a href="index.html">Home</a>
<a href="projects.html">Data Science Projects</a>
<a href="ai_portfolio.html">AI Portfolio</a>
<a href="teaching.html">Teaching Portfolio</a>
<a href="consulting.html">Consulting Portfolio</a>
<a href="books.html">Top 20 Books</a>
<a href="contact.html">Contact</a>
</nav>
<!-- Introduction -->
<div class="container">
<p>I have completed several high profile AI projects listed below:</p>
</div>
<div class="container">
</div>
<div class="container">
<table>
<thead>
<tr>
<th>Project Name</th>
<th>Affiliation</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="University">Vector Database Standup with Pinecone</td>
<td data-label="University">Professor at LMU</td>
<td data-label="University">Used a vector database to store e-commerce product data and then used it to retrieve similar products</td>
</tr>
<tr>
<td data-label="University">Practical Multi AI Agents and Advanced Use Cases with crewAI</td>
<td data-label="University">DeepLearning.Ai</td>
<td data-label="University">Deployed agentic crews using CrewAI</td>
</tr>
<tr>
<td data-label="University">Retrieval Augmented Generation (RAG) Demo</td>
<td data-label="University">Presentation to Great Learning</td>
<td data-label="University">Explained a business use case for RAG and showed a HuggingFace demo </td>
</tr> <tr>
<td data-label="University">LangChain Chat with Your Data</td>
<td data-label="University">DeepLearning.ai Course</td>
<td data-label="University">Did projects to understand how to connect an AI agent to a database </td>
</tr>
<tr>
<td data-label="University">RAG Chatbot: Data Automation with Chatbot for Housing Analytics</td>
<td data-label="University">GWU MSBA Capstone Project</td>
<td data-label="University">Built a chatbot that queries Snowflake data warehouse for real-time housing analytics answers</td>
</tr>
<tr>
<td data-label="University">LLM Email Automation System</td>
<td data-label="University">Personal Project</td>
<td data-label="University">Deployed an email drafting application using LLM technology, documented on Medium</td>
</tr>
</tbody>
</table>
<div class="container">
<h2>RAG Chatbot: Data Automation with Chatbot for Housing Analytics</h2>
<h4>Supervised a team of Master's students to produce this deliverable</h4>
<h5>This chatbot hit a Snowflake data warehouse to produce real-time answers to natural language input</h5>
<section class="image-section">
<img src="/images/housing_rag.jpeg" alt="RAG Screenshot" width="511" height="767">
</section>
</div>
<div class="container">
<h2>I Built an LLM That Writes Emails for Me — Here’s How</h2>
<h4>Deployed an Email Drafting Application and Wrote about it on Medium.com</h4>
<h5>This chatbot hit a Snowflake data warehouse to produce real-time answers to natural language input</h5>
<section class="image-section">
<img src="/images/llm_email_article.jpeg" alt="LLM Article Screenshot" width="511" height="767"><br>
<a href="https://medium.com/p/688683b1993e#2673-b69a6fe50d14" target="_blank" rel="noopener noreferrer" class="button">✉️ I Built an LLM That Writes Emails for Me — Here’s How - Link to Article</a>
</section>
</div>
</div>