https://github.com/sarthak310/cold-email-generator
A Gen AI project using llama 3.1, groq, langchain, and streamlit.
https://github.com/sarthak310/cold-email-generator
artificial-intelligence generative-ai groq-api langchain llama3-1 streamlit
Last synced: 8 months ago
JSON representation
A Gen AI project using llama 3.1, groq, langchain, and streamlit.
- Host: GitHub
- URL: https://github.com/sarthak310/cold-email-generator
- Owner: sarthak310
- Created: 2024-11-10T02:18:58.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-11-10T20:22:04.000Z (11 months ago)
- Last Synced: 2025-01-09T17:56:02.092Z (9 months ago)
- Topics: artificial-intelligence, generative-ai, groq-api, langchain, llama3-1, streamlit
- Language: Python
- Homepage:
- Size: 717 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📧 Cold Mail Generator
Cold email generator using groq, langchain and streamlit. It allows users to input the URL of a company's job posting. The tool then extracts job requirements from the job description and generates personalized cold emails. These emails include relevant portfolio/github/project links sourced from a vector database, based on the specific job descriptions.## Example
### Job Description from a posting on Google

### Generated Result
## Architecture Diagram
## Set-up
1. To get started we first need to get an API_KEY from here: https://console.groq.com/keys. Inside `app/.env` update the value of `GROQ_API_KEY` with the API_KEY you created.2. To get started, first install the dependencies using:
```commandline
pip install -r requirements.txt
```
3. Run the streamlit app:
```commandline
streamlit run app/main.py
```