Spaces:
Sleeping
Sleeping
correct email address selection
Browse files
app.py
CHANGED
@@ -1,13 +1,14 @@
|
|
1 |
import streamlit as st
|
2 |
import os
|
3 |
-
from clients import CompanySpecificClient, UserSpecificClient,hooks,RengagmentEmail,display_analytics
|
4 |
|
5 |
-
st.set_page_config(page_title="SalesIntel",layout="wide")
|
6 |
st.html("styles.html")
|
7 |
endpoint = os.getenv('blog_lead_endpoint')
|
8 |
st.html('<h1 class="title"> SalesIntel </h1>')
|
9 |
st.html('<h4 class="hero-subtitle"> Your AI Sales Companions for Success</h4>')
|
10 |
email_options = [
|
|
|
11 | |
12 | |
13 | |
@@ -19,6 +20,7 @@ email_options = [
|
|
19 | |
20 |
]
|
21 |
email_address = st.selectbox("**Introduce yourself to us**", email_options)
|
|
|
22 |
def main():
|
23 |
# First container for Hook2Lead
|
24 |
cols = st.columns(2)
|
@@ -26,38 +28,52 @@ def main():
|
|
26 |
with cols[0]:
|
27 |
with st.container(border=True):
|
28 |
st.html('<h3><span>Re-engagement Campaigns</span></h3>')
|
29 |
-
cols_internal=st.columns(2)
|
30 |
with cols_internal[0]:
|
31 |
if st.button("Hook2lead", help="The tool will match it with the leads. You can bring your hooks either a blog, AI announcement, or trend"):
|
32 |
-
|
|
|
|
|
|
|
33 |
with cols_internal[1]:
|
34 |
if st.button("let the AI hooks", help="The AI will summarize the conversation and action points for you and write an email to explore new use cases. You can bring old conversations with previous leads"):
|
35 |
-
|
|
|
|
|
|
|
36 |
with cols[1]:
|
37 |
with st.container(border=True):
|
38 |
-
st.html('<h3><span>Cold Campaigns</span></h3>')
|
39 |
cols = st.columns(2)
|
40 |
with cols[0]:
|
41 |
if st.button("Tailored for companies", help="Generate cold emails based on company offerings and Omdena's services"):
|
42 |
-
|
|
|
|
|
|
|
43 |
with cols[1]:
|
44 |
if st.button("Tailored for executives", help="Generate cold emails based on executive achievements"):
|
45 |
-
|
|
|
|
|
|
|
46 |
|
47 |
@st.dialog("Bring your hook , and we will match it with the leads", width="large")
|
48 |
def hook_dialog(email_address):
|
49 |
hooks(email_address)
|
|
|
50 |
@st.dialog("personalized cold emails for company offerings", width="large")
|
51 |
def cold_organization_dialog():
|
52 |
CompanySpecificClient(email_address)
|
53 |
|
54 |
@st.dialog("personalized cold emails for executive achievements", width="large")
|
55 |
def cold_executive_dialog():
|
56 |
-
UserSpecificClient(email_address)
|
57 |
|
58 |
@st.dialog("Tailored emails for re-engaging leads", width="large")
|
59 |
def rengage_lead():
|
60 |
-
RengagmentEmail(email_address)
|
|
|
61 |
if __name__ == "__main__":
|
62 |
logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL
|
63 |
st.markdown(
|
@@ -66,6 +82,6 @@ if __name__ == "__main__":
|
|
66 |
""",
|
67 |
unsafe_allow_html=True,
|
68 |
)
|
69 |
-
|
70 |
main()
|
71 |
display_analytics()
|
|
|
1 |
import streamlit as st
|
2 |
import os
|
3 |
+
from clients import CompanySpecificClient, UserSpecificClient, hooks, RengagmentEmail, display_analytics
|
4 |
|
5 |
+
st.set_page_config(page_title="SalesIntel", layout="wide")
|
6 |
st.html("styles.html")
|
7 |
endpoint = os.getenv('blog_lead_endpoint')
|
8 |
st.html('<h1 class="title"> SalesIntel </h1>')
|
9 |
st.html('<h4 class="hero-subtitle"> Your AI Sales Companions for Success</h4>')
|
10 |
email_options = [
|
11 |
+
"", # Invalid selection
|
12 | |
13 | |
14 | |
|
|
20 | |
21 |
]
|
22 |
email_address = st.selectbox("**Introduce yourself to us**", email_options)
|
23 |
+
|
24 |
def main():
|
25 |
# First container for Hook2Lead
|
26 |
cols = st.columns(2)
|
|
|
28 |
with cols[0]:
|
29 |
with st.container(border=True):
|
30 |
st.html('<h3><span>Re-engagement Campaigns</span></h3>')
|
31 |
+
cols_internal = st.columns(2)
|
32 |
with cols_internal[0]:
|
33 |
if st.button("Hook2lead", help="The tool will match it with the leads. You can bring your hooks either a blog, AI announcement, or trend"):
|
34 |
+
if email_address:
|
35 |
+
hook_dialog(email_address)
|
36 |
+
else:
|
37 |
+
st.warning("Please select a valid email address to proceed.")
|
38 |
with cols_internal[1]:
|
39 |
if st.button("let the AI hooks", help="The AI will summarize the conversation and action points for you and write an email to explore new use cases. You can bring old conversations with previous leads"):
|
40 |
+
if email_address:
|
41 |
+
rengage_lead()
|
42 |
+
else:
|
43 |
+
st.warning("Please select a valid email address to proceed.")
|
44 |
with cols[1]:
|
45 |
with st.container(border=True):
|
46 |
+
st.html('<h3><span>Cold Campaigns</span></h3>')
|
47 |
cols = st.columns(2)
|
48 |
with cols[0]:
|
49 |
if st.button("Tailored for companies", help="Generate cold emails based on company offerings and Omdena's services"):
|
50 |
+
if email_address:
|
51 |
+
cold_organization_dialog()
|
52 |
+
else:
|
53 |
+
st.warning("Please select a valid email address to proceed.")
|
54 |
with cols[1]:
|
55 |
if st.button("Tailored for executives", help="Generate cold emails based on executive achievements"):
|
56 |
+
if email_address:
|
57 |
+
cold_executive_dialog()
|
58 |
+
else:
|
59 |
+
st.warning("Please select a valid email address to proceed.")
|
60 |
|
61 |
@st.dialog("Bring your hook , and we will match it with the leads", width="large")
|
62 |
def hook_dialog(email_address):
|
63 |
hooks(email_address)
|
64 |
+
|
65 |
@st.dialog("personalized cold emails for company offerings", width="large")
|
66 |
def cold_organization_dialog():
|
67 |
CompanySpecificClient(email_address)
|
68 |
|
69 |
@st.dialog("personalized cold emails for executive achievements", width="large")
|
70 |
def cold_executive_dialog():
|
71 |
+
UserSpecificClient(email_address)
|
72 |
|
73 |
@st.dialog("Tailored emails for re-engaging leads", width="large")
|
74 |
def rengage_lead():
|
75 |
+
RengagmentEmail(email_address)
|
76 |
+
|
77 |
if __name__ == "__main__":
|
78 |
logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL
|
79 |
st.markdown(
|
|
|
82 |
""",
|
83 |
unsafe_allow_html=True,
|
84 |
)
|
85 |
+
|
86 |
main()
|
87 |
display_analytics()
|