Spaces:
Sleeping
Sleeping
ruchi
commited on
Commit
·
4331889
1
Parent(s):
edf3530
Add money needs and other criteria
Browse files
app.py
CHANGED
@@ -10,8 +10,8 @@ model = genai.GenerativeModel(model_name = "gemini-pro")
|
|
10 |
st.markdown(
|
11 |
"""
|
12 |
<div style="min-width: 1000px;">
|
13 |
-
<div style="background-color:#
|
14 |
-
<h1 style="color:white;text-align:center;">
|
15 |
</div>
|
16 |
<div style="color:black;text-align:center;">
|
17 |
<h1>Welcome to the Proposition Management Tool</h1>
|
@@ -23,7 +23,11 @@ st.markdown(
|
|
23 |
|
24 |
selectedCity = st.selectbox("Please select the City and the Bank Product for Your Proposition.", ["CharlesTown", "Limburg"])
|
25 |
selectedProduct = st.selectbox("Please select the Product", ["Current", "Mortage", "Credit Card", "Crypto"])
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
submit_button = st.button("Submit")
|
28 |
pre_prompt = '''You are a business analyser bot. I will give you data and references and you will analyse the propositions and will give them scoring on particular criterias. An example is below
|
29 |
|
|
|
10 |
st.markdown(
|
11 |
"""
|
12 |
<div style="min-width: 1000px;">
|
13 |
+
<div style="background-color:#87CEEB;padding:10px;border-radius:10px;">
|
14 |
+
<h1 style="color:white;text-align:center;">Blue AI</h1>
|
15 |
</div>
|
16 |
<div style="color:black;text-align:center;">
|
17 |
<h1>Welcome to the Proposition Management Tool</h1>
|
|
|
23 |
|
24 |
selectedCity = st.selectbox("Please select the City and the Bank Product for Your Proposition.", ["CharlesTown", "Limburg"])
|
25 |
selectedProduct = st.selectbox("Please select the Product", ["Current", "Mortage", "Credit Card", "Crypto"])
|
26 |
+
moneyNeeds = st.text_area("Describe money needs of your target audience. For example do they spend a lot on education, healthcare, gym, eating out etc.")
|
27 |
+
customerExperience = st.text_area("Describe the customer experience needs of your target audience.")
|
28 |
+
sutainabilityNeeds = st.text_area("Describe the sutainability needs of your target audience.")
|
29 |
+
|
30 |
+
userProposal = st.text_area("Enter your final Proposition for Select City and Product")
|
31 |
submit_button = st.button("Submit")
|
32 |
pre_prompt = '''You are a business analyser bot. I will give you data and references and you will analyse the propositions and will give them scoring on particular criterias. An example is below
|
33 |
|