cryogenic22 commited on
Commit
acec4a7
Β·
verified Β·
1 Parent(s): 420a617

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -3
app.py CHANGED
@@ -72,6 +72,21 @@ def display_header():
72
 
73
  with header_col2:
74
  st.title("Synaptyx.AI - RFP Analysis Agent")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  def main():
77
  # Set up the page configuration
@@ -153,9 +168,10 @@ def main():
153
  """)
154
 
155
  with col2:
156
- st.markdown("#### Example Questions:")
157
- for example in display_example_questions():
158
- st.markdown(f"β€’ {example}")
 
159
  else:
160
  # Clean chat interface
161
  display_chat_interface()
 
72
 
73
  with header_col2:
74
  st.title("Synaptyx.AI - RFP Analysis Agent")
75
+
76
+ def display_example_questions():
77
+ """Return a list of example questions for RFP analysis."""
78
+ return [
79
+ "πŸ“Š Summarize the main points of the document",
80
+ "πŸ“ Draft a 'Why Us' section based on the document",
81
+ "🎯 Extract key success metrics and outcomes",
82
+ "πŸ’‘ What are the innovative solutions mentioned?",
83
+ "🀝 Analyze the partnership benefits described",
84
+ "πŸ“ˆ What are the key performance requirements?",
85
+ "πŸ’° Extract budget and pricing information",
86
+ "πŸ“… What are the important deadlines and milestones?",
87
+ "⚑ Identify the technical requirements",
88
+ "πŸ” What are the evaluation criteria?"
89
+ ]
90
 
91
  def main():
92
  # Set up the page configuration
 
168
  """)
169
 
170
  with col2:
171
+ st.markdown("#### Example Questions You Can Ask:")
172
+ examples = display_example_questions()
173
+ for example in examples:
174
+ st.markdown(f"{example}")
175
  else:
176
  # Clean chat interface
177
  display_chat_interface()