File size: 14,942 Bytes
ec75db4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
import streamlit as st
import os
import datetime as DT
import pytz
import time
import json
import re
import random
import string
from transformers import AutoTokenizer
from tools import toolsInfo

from dotenv import load_dotenv
load_dotenv()


from groq import Groq
client = Groq(
        api_key=os.environ.get("GROQ_API_KEY"),
)
model_def = "llama-3.1-70b-versatile"
toolsModel = "llama3-groq-70b-8192-tool-use-preview"
maxTokens = 8000
tokenizer = AutoTokenizer.from_pretrained("Xenova/Meta-Llama-3.1-Tokenizer")

def countTokens(text):
    text = str(text)
    tokens = tokenizer.encode(text, add_special_tokens=False)
    return len(tokens)

SYSTEM_MSG = """
You are an intelligent, personalized email generator for cold outreach, guiding the user through a structured workflow. 
Ensure clarity and conciseness in your communication. Ask only one question at a time. you dont need to write the word "step" while asking the question, these are for you to understand the flow

# Step 1: Determine the Purpose of the Email
- Prompt the user to select the purpose of the email, using well-formatted numbered options.
- Group the options by category (Acquiring Customers, Learning and Connecting, Jobs and Hiring).
- Provide only numbers for the options, not the categories.
- Include a line break after each category name.

Example:
##### Category: Acquiring Customers
1. Lead Generation (spark interest in possible customers)
2. Sales Outreach (directly contact decision-makers)
3. Partnership and Collaboration (build mutually beneficial relationships)
4. Event Promotion (invite people to webinars, conferences, or other events)
5. Case Study or Testimonial Requests (ask satisfied customers for testimonials)

##### Category: Learning and Connecting
6. Networking (establish connections with industry experts)
7. Market Research (gather information about target audiences or industries)
8. Career Advice (seek guidance from experienced professionals)

##### Category: Jobs and Hiring
9. Job Application (apply for job openings)
10. Job Referrals (ask for referrals or recommendations)
11. Recruitment (reach out to potential candidates)

- now, you have to collect details, make sure you behave in a smart way, if the user mentions before suppose the recipient is a hotel manager, just confirm if the industry of the recipeint is hospitality, dont behave like dumb and ask the recipients's industry from the user. similarly for other parameters as well

# Step 2: Collect Sender Details
- Ask the user for the following specific information:
    1. **Objective**: Clarify the user's overall goal or purpose for sending the email (e.g., lead generation, networking, job application).
    2. **Personal Details**: Collect the sender's name, role, and company information (if applicable).
    3. **Industry**: Ask for the industry the sender works in to ensure relevance in the email content.

Example:
- "Please provide the objective for sending this email (e.g., Lead Generation, Networking)."
- "What are your personal details? Please provide your name, role, and company (if applicable)."
- "What industry are you in?"

# Step 3: Collect Recipient Information
- Ask the user for the following recipient-related details:
    1. **Recipient Name**: Collect the recipient's name to personalize the email.
    2. **Recipient Role**: Ask for the recipient's role in their company to tailor the email accordingly.
    3. **Recipient Industry**: Confirm or inquire about the recipient's industry (if different from the sender's).

Example:
- "What is the name of the recipient you are sending this email to?"
- "What is the recipient's role in their company?"
- "What industry does the recipient work in?"

- very important: Collect any other specific details that would help personalize or customize the email based on the user’s objective. 
  For example, you might ask if the user has interacted with the recipient before or if they know specific pain points to address in the email.

- now that you have collected these details, now you have to execute step 4 first that is save info in google sheets and then only move forward
# Step 4: Save Information to Google Sheets
- Save the collected sender and recipient details in a Google Sheet for easy reference.
- Verify with the user whether they can view the information in the sheet.

# Step 5: Draft Two Email Variations
- Based on the collected details, generate **two distinct variations** of the email.
- Ensure that each email is well-structured
- Present the two variations with numbered options for easy selection by the user.
- now that you know the industry of recipient, try to highlight the pain points of people in that industry, try to generate trust 
- Example structure for email body: (you dont have to display these steps, like introduction etc., you just have to give the variation of the mail according to these steps)
    -----
    pargraph 1:Introduction
    -----
    paragraph 2: Key Message
    -----
    paragraph 3: Call to Action
    -----
- while printing the template, it should resemble how the actual email looks like
- Ask the user which version they prefer and whether they would like to finalize it. If not, continue refining the email based on their feedback.
- think again if you have asked the user if he/she wants to add some more details
- once the user agrees, save that selected template ((important: the actual selected email, not the variation number)) in the Google Sheet.

# Step 6: Finalize the Email
- ((very important: now that you have got the selected template, you need to add some more sentence in qualiity english as per the details entered  to the mail to generate trust withinh the recipient))
- Once the user selects an email version, ask for any missing placeholder values (e.g. user's phone number)
- Incorporate the placeholder values into the final email and show the user the complete draft.
- Confirm with the user whether the final email looks good or if additional changes are needed,

# Step 7: Send the Email
- Once the user approves the final version, ask for the recipient's exact email ID.
- dont assume recipients email id on the basis of the information entered by the user, explicity ask the email to which this message has to be sent
- Do **not** send the email until a valid email ID has been provided.
- important: ((the email has to be well structured like it was in the template, with proper paragraphs, dont just combine all the info into one paragraph into one and send it. also in the sent email in can see newline characters, this is send through api, so make sure that the send email, doesnt have these charcters and is complete i.e exactly what user selected00
- think again if you have followed the above instruction in step 7, if not correct them.
- Upon receiving a valid email, send the final formatted email.

# Step 8: congratulate the user
- After successfully sending the email, congratulate the user

# Step 9: Repeat Process
- Offer the user the option to repeat the process for additional profiles or recipients.
"""

StartMsg = "HEY THERE!😊"


st.set_page_config(
        page_title= "EmailGenie",
        page_icon= "πŸ§žβ€β™‚οΈ")

ipAddress = st.context.headers.get("x-forwarded-for")


def __nowInIST() -> DT.datetime:
    return DT.datetime.now(pytz.timezone("Asia/Kolkata"))


def pprint(log: str):
    now = __nowInIST()
    now = now.strftime("%Y-%m-%d %H:%M:%S")
    print(f"[{now}] [{ipAddress}] {log}")


pprint("\n")

st.markdown(
    """
    <style>
    @keyframes blinker {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0.2;
        }
        100% {
            opacity: 1;
        }
    }
    .blinking {
        animation: blinker 3s ease-out infinite;
    }
    .code {
        color: green;
        border-radius: 3px;
        padding: 2px 4px; /* Padding around the text */
        font-family: 'Courier New', Courier, monospace; /* Monospace font */
    }
    div[aria-label="dialog"] {
        width: 90vw;
    }
    </style>
    """,
    unsafe_allow_html=True
)


def isInvalidResponse(response: str):
    # new line followed by small case char
    if len(re.findall(r'\n[a-z]', response)) > 3:
        return True

    # lot of repeating words
    if len(re.findall(r'\b(\w+)(\s+\1){2,}\b', response)) > 1:
        return True

    # lots of paragraphs
    if len(re.findall(r'\n\n', response)) > 25:
        return True

def resetButtonState():
    st.session_state["buttonValue"] = ""


def setStartMsg(msg):
    st.session_state.startMsg = msg


if "chatHistory" not in st.session_state:
    st.session_state.chatHistory = []

if "messages" not in st.session_state:
    st.session_state.messages = []

if "buttonValue" not in st.session_state:
    resetButtonState()

if "startMsg" not in st.session_state:
    st.session_state.startMsg = ""

if "emailSent" not in st.session_state:
    st.session_state.emailSent = False

st.session_state.toolResponseDisplay = {}


def getMessages():
    def getContextSize():
        currContextSize = countTokens(SYSTEM_MSG) + countTokens(st.session_state.messages) + 150
        pprint(f"{currContextSize=}")
        return currContextSize

    while getContextSize() > maxTokens:
        pprint("Context size exceeded, removing first message")
        st.session_state.messages.pop(0)

    return st.session_state.messages

tools = [
    toolsInfo["customerDetailsGsheets"]["schema"],
    toolsInfo["saveTemplate"]["schema"],
    toolsInfo["sendEmail"]["schema"],
]

def showToolResponse(toolResponseDisplay : dict):
    # Directly display the message without any icon
    st.markdown(toolResponseDisplay.get("text"))

def addToolCallToMsgs(toolCall: dict):
    st.session_state.messages.append(
        {
            "role": "assistant",
            "tool_calls": [
                {
                    "id": toolCall.id,
                    "function": {
                        "name": toolCall.function.name,
                        "arguments": toolCall.function.arguments,
                    },
                    "type": toolCall.type,
                }
            ],
        }
    )

def processToolCalls(toolCalls):
    for toolCall in toolCalls:
        functionName = toolCall.function.name
        functionToCall = toolsInfo[functionName]["func"]
        functionArgsStr = toolCall.function.arguments
        pprint(f"{functionName=} | {functionArgsStr=}")
        functionArgs = json.loads(functionArgsStr)
        functionResult = functionToCall(**functionArgs)
        functionResponse = functionResult.get("response")
        responseDisplay = functionResult.get("display")
        pprint(f"{functionResponse=}")

        if responseDisplay:
            showToolResponse(responseDisplay)
            st.session_state.toolResponseDisplay = responseDisplay

        addToolCallToMsgs(toolCall)
        st.session_state.messages.append(
            {
                "role": "tool",
                "tool_call_id": toolCall.id,
                "name": functionName,
                "content": functionResponse,
            }
        )


def dedupeToolCalls(toolCalls: list):
    toolCallsDict = {}
    for toolCall in toolCalls:
        toolCallsDict[toolCall.function.name] = toolCall
    dedupedToolCalls = list(toolCallsDict.values())

    if len(toolCalls) != len(dedupedToolCalls):
        pprint("Deduped tool calls!")
        pprint(f"{toolCalls=} -> {dedupedToolCalls=}")

    return dedupedToolCalls


def getRandomToolId():
    return ''.join(
        random.choices(
            string.ascii_lowercase + string.digits,
            k=4
        )
    )

def predict(model: str = None):
    MODEL = model or model_def

    messagesFormatted = [{"role": "system", "content": SYSTEM_MSG}]
    messagesFormatted.extend(getMessages())
    contextSize = countTokens(messagesFormatted)
    pprint(f"{contextSize=} | {MODEL}")
    pprint(f"{messagesFormatted=}")

    response = client.chat.completions.create(
        model=MODEL,
        messages=messagesFormatted,
        temperature=0.5,
        max_tokens=4000,
        stream=False,
        tools=tools
    )

    responseMessage = response.choices[0].message
    # pprint(f"{responseMessage=}")
    responseContent = responseMessage.content
    # pprint(f"{responseContent=}")

    if responseContent and '<function=' in responseContent:
        pprint("Switching to TOOLS_MODEL")
        return predict(toolsModel)


    if responseContent:
        yield responseContent
    toolCalls = responseMessage.tool_calls
    # pprint(f"{toolCalls=}")

    if toolCalls:
        pprint(f"{toolCalls=}")
        toolCalls = dedupeToolCalls(toolCalls)
        try:
            processToolCalls(toolCalls)
            return predict()
        except Exception as e:
            pprint(e)

st.title("EmailGenie πŸ“§πŸ§žβ€β™‚οΈ")
if not (st.session_state["buttonValue"] or st.session_state["startMsg"]):
    st.button(StartMsg, on_click=lambda: setStartMsg(StartMsg))
for chat in st.session_state.chatHistory:
    role = chat["role"]
    content = chat["content"]
    toolResponseDisplay = chat.get("toolResponseDisplay")
    with st.chat_message(role):
        st.markdown(content)
        if toolResponseDisplay:
           showToolResponse(toolResponseDisplay)

         
if prompt := (st.chat_input() or st.session_state["buttonValue"] or st.session_state["startMsg"]):
    resetButtonState()
    setStartMsg("")

    with st.chat_message("user"):
        st.markdown(prompt)
    pprint(f"{prompt=}")
    st.session_state.chatHistory.append({"role": "user", "content": prompt })
    st.session_state.messages.append({"role": "user", "content": prompt })

    with st.chat_message("assistant"):
        responseContainer = st.empty()

        def __printAndGetResponse():
            response = ""
            # responseContainer.markdown(".....")
            responseGenerator = predict()

            for chunk in responseGenerator:
                response += chunk
                if isInvalidResponse(response):
                    pprint(f"Invalid_{response=}")
                    return
                responseContainer.markdown(response)

            return response

        response = __printAndGetResponse()
        while not response:
            pprint("Empty response. Retrying..")
            time.sleep(0.5)
            response = __printAndGetResponse()

        pprint(f"{response=}")

        def selectButton(optionLabel):
            st.session_state["buttonValue"] = optionLabel
            pprint(f"Selected: {optionLabel}")

        toolResponseDisplay = st.session_state.toolResponseDisplay
        st.session_state.chatHistory.append({
            "role": "assistant",
            "content": response,
            "toolResponseDisplay": toolResponseDisplay
        })

        st.session_state.messages.append({
            "role": "assistant",
            "content": response,
        })