An autonomous agent created using Langchain to automate your code review workflow for smartlead campaigns
It first takes your past emails and replies and generates its own knowledge base to refer while generating a response for any message so that it can write in your tone.
From the given conversation history, it can classify your emails in different categories
To add more human touch to your emails, it gets information about lead and their organization and adds part of it in your email reply
The agent will apply semantic search on your past email and replies and will generate new response based on that. Then it will use smartlead API to reply back to lead
- Python and anaconda installed on your machine
- OpenAI API Key
- Apollo API Key
- Smartlead API Key
- Clone the repository
- Create a file called
constants.py
in same folder and store all of your api keys like this
OPENAI_API_KEY = <key_here>
APOLLO_API_KEY = <key_here>
SMARTLEAD_API_KEY = <key_here>
- Open any jupyter notebook from repository and import the
constants.py
file in it - Select your existing python environment or create one using anaconda
- Run the code