rchrdgwr commited on
Commit
42e89e1
1 Parent(s): 28d8ff0

added deal info to report

Browse files
__pycache__/utils_output.cpython-311.pyc CHANGED
Binary files a/__pycache__/utils_output.cpython-311.pyc and b/__pycache__/utils_output.cpython-311.pyc differ
 
__pycache__/utils_prep.cpython-311.pyc CHANGED
Binary files a/__pycache__/utils_prep.cpython-311.pyc and b/__pycache__/utils_prep.cpython-311.pyc differ
 
reports/HSBC Opportunity Review Report.md CHANGED
@@ -1,5 +1,14 @@
1
  **Analysis Results**
2
 
 
 
 
 
 
 
 
 
 
3
  **Summary:** The opportunity with HSBC involves providing a new analytics engine for their loan origination system, aimed at improving speed and flexibility. The urgency is driven by an upcoming renewal with their current vendor. Multiple meetings have been held, leading to a proposal review. A follow-up with the VP of IT is planned to discuss next steps, possibly moving towards a pilot or negotiations.
4
 
5
  **Score:** 78
@@ -13,7 +22,6 @@
13
  **Identify Pain:** 90 - HSBC's need for a faster, more flexible system is well understood, with urgency added by the upcoming vendor renewal, showing a strong identification of pain points.
14
  **Champion:** 70 - John Smith appears to be a potential champion, engaging in most meetings, but more explicit support or advocacy from him would strengthen this position.
15
 
16
-
17
  **Next Steps**
18
 
19
  Prepare for the meeting with John Smith by developing a detailed pilot proposal that aligns with HSBC's decision criteria and showcases the value of the analytics engine. Aim to secure a commitment to move forward with a pilot program.
@@ -23,3 +31,41 @@ Prepare for the meeting with John Smith by developing a detailed pilot proposal
23
  1. Highlight the ROI and performance improvements expected from the new analytics engine, emphasizing how it addresses HSBC's pain points for speed and flexibility in the loan origination process
24
  2. Discuss the customization and integration options explored so far, and seek clarity on any additional decision-making factors or criteria that need to be addressed to align with HSBC's expectations
25
  3. Reinforce the urgency of transitioning to a more advanced solution by outlining the potential risks and downsides of continuing with the current vendor, especially in light of the upcoming renewal
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  **Analysis Results**
2
 
3
+ **Opportunity ID:** XFR0001
4
+ **Opportunity Name:** Lending - Loan Origination System
5
+ **Opportunity Stage:** Proposal
6
+ **Opportunity Description:** Developing analytic capabilities for the loan origination system
7
+ **Opportunity Value:** $250,000
8
+ **Opportunity Close Date:** 11/30/2024
9
+ **Customer Contact:** John Smith
10
+ **Customer Contact Role:** VP, Information Technology
11
+
12
  **Summary:** The opportunity with HSBC involves providing a new analytics engine for their loan origination system, aimed at improving speed and flexibility. The urgency is driven by an upcoming renewal with their current vendor. Multiple meetings have been held, leading to a proposal review. A follow-up with the VP of IT is planned to discuss next steps, possibly moving towards a pilot or negotiations.
13
 
14
  **Score:** 78
 
22
  **Identify Pain:** 90 - HSBC's need for a faster, more flexible system is well understood, with urgency added by the upcoming vendor renewal, showing a strong identification of pain points.
23
  **Champion:** 70 - John Smith appears to be a potential champion, engaging in most meetings, but more explicit support or advocacy from him would strengthen this position.
24
 
 
25
  **Next Steps**
26
 
27
  Prepare for the meeting with John Smith by developing a detailed pilot proposal that aligns with HSBC's decision criteria and showcases the value of the analytics engine. Aim to secure a commitment to move forward with a pilot program.
 
31
  1. Highlight the ROI and performance improvements expected from the new analytics engine, emphasizing how it addresses HSBC's pain points for speed and flexibility in the loan origination process
32
  2. Discuss the customization and integration options explored so far, and seek clarity on any additional decision-making factors or criteria that need to be addressed to align with HSBC's expectations
33
  3. Reinforce the urgency of transitioning to a more advanced solution by outlining the potential risks and downsides of continuing with the current vendor, especially in light of the upcoming renewal
34
+
35
+ **Opportunity History:**
36
+
37
+ **Meeting 1:** Initial Discovery Call
38
+ - Date: August 15, 2024
39
+ - Attendees:
40
+ - HSBC: John Smith (VP, IT), Sarah Johnson (Head of Lending)
41
+ - Our Company: Michael Brown (Account Executive), Emily Davis (Solutions Architect)
42
+ - Duration: 60 minutes
43
+ - Key Points Discussed:
44
+ - HSBC's current challenges with their loan origination system
45
+ - High-level overview of our analytics capabilities
46
+ - Initial discussion on potential integration points
47
+ - Outcome: HSBC expressed interest in a follow-up meeting for a deeper dive into our solution
48
+
49
+ **Meeting 2:** Technical Deep Dive
50
+ - Date: September 3, 2024
51
+ - Attendees:
52
+ - HSBC: John Smith (VP, IT), Mark Wilson (Senior Systems Analyst), Lisa Chen (Data Scientist)
53
+ - Our Company: Emily Davis (Solutions Architect), Alex Rodriguez (Technical Lead)
54
+ - Duration: 90 minutes
55
+ - Key Points Discussed:
56
+ - Detailed walkthrough of our analytics engine architecture
57
+ - Discussion on data migration and integration processes
58
+ - Exploration of customization options to meet HSBC's specific needs
59
+ - Outcome: HSBC requested a proposal outlining potential implementation scenarios
60
+
61
+ **Meeting 3:** Proposal Review and Q&A
62
+ - Date: September 25, 2024
63
+ - Attendees:
64
+ - HSBC: John Smith (VP, IT), Sarah Johnson (Head of Lending), David Thompson (CFO)
65
+ - Our Company: Michael Brown (Account Executive), Emily Davis (Solutions Architect), Rachel Kim (Client Success Manager)
66
+ - Duration: 75 minutes
67
+ - Key Points Discussed:
68
+ - Presentation of our proposed solution and implementation plan
69
+ - Discussion on ROI and expected performance improvements
70
+ - Clarification on pricing structure and contract terms
71
+ - Outcome: HSBC team to review internally and schedule a follow-up for any additional questions before moving to the next stage
utils_output.py CHANGED
@@ -113,12 +113,11 @@ async def display_evaluation_results(cl, session_state):
113
  eval_output = "Miss"
114
  else:
115
  eval_output = "N/A"
116
- output = f"""
117
- **Question:** {resp.get('question', 'N/A')}
118
- **Answer:** {resp.get('response', 'N/A')}
119
- **SalesBuddy Evaluation:** {resp.get('response_evaluation', 'N/A')}
120
- **Hit/Miss:** {eval_output}
121
- """
122
  if session_state.do_ragas_evaluation:
123
  scores = session_state.scores[index]
124
  relevancy = scores.get('answer_relevancy', 'N/A')
 
113
  eval_output = "Miss"
114
  else:
115
  eval_output = "N/A"
116
+ output = f"**Question:** {resp.get('question', 'N/A')}\n"
117
+ output = output + f"**Answer:** {resp.get('response', 'N/A')}\n"
118
+ output = output + f"**SalesBuddy Evaluation:** {resp.get('response_evaluation', 'N/A')}\n"
119
+ output = output + f"**Hit/Miss:** {eval_output}\n"
120
+
 
121
  if session_state.do_ragas_evaluation:
122
  scores = session_state.scores[index]
123
  relevancy = scores.get('answer_relevancy', 'N/A')
utils_prep.py CHANGED
@@ -89,9 +89,7 @@ async def prep_opportunity_analysis():
89
  agent_3_message = "*Determining next steps ...*"
90
  await cl.Message(content=agent_3_message).send()
91
  await asyncio.sleep(1)
92
- output_message = "**Analysis Results**"
93
- await cl.Message(content=output_message).send()
94
-
95
  markdown_file_path = "reports/HSBC Opportunity Review Report.md"
96
  if os.path.exists(markdown_file_path):
97
  await cl.Message(content=read_markdown_file(markdown_file_path)).send()
 
89
  agent_3_message = "*Determining next steps ...*"
90
  await cl.Message(content=agent_3_message).send()
91
  await asyncio.sleep(1)
92
+
 
 
93
  markdown_file_path = "reports/HSBC Opportunity Review Report.md"
94
  if os.path.exists(markdown_file_path):
95
  await cl.Message(content=read_markdown_file(markdown_file_path)).send()