sunbal7 commited on
Commit
bb4726b
·
verified ·
1 Parent(s): ed3bcaa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -4,20 +4,20 @@ from exporters import export_pdf, export_docx
4
 
5
  st.set_page_config(page_title="IdeaBrief AI", layout="wide")
6
 
7
- st.title("🧠 IdeaBrief AI (Gemini Multi-Agent)")
8
- st.subheader("Investor-grade product reports from raw ideas")
9
 
10
  idea = st.text_area(
11
  "Enter your project idea",
12
  height=200,
13
- placeholder="Example: An AI system that detects student burnout early..."
14
  )
15
 
16
  if st.button("Generate Product Report"):
17
  if not idea.strip():
18
  st.warning("Please enter a project idea.")
19
  else:
20
- with st.spinner("Multi-agent reasoning in progress..."):
21
  report = generate_full_report(idea)
22
 
23
  st.markdown(report)
 
4
 
5
  st.set_page_config(page_title="IdeaBrief AI", layout="wide")
6
 
7
+ st.title("🧠 IdeaBrief AI")
8
+ st.subheader("Structured product reports from raw ideas")
9
 
10
  idea = st.text_area(
11
  "Enter your project idea",
12
  height=200,
13
+ placeholder="Example: An AI system that detects burnout in students early..."
14
  )
15
 
16
  if st.button("Generate Product Report"):
17
  if not idea.strip():
18
  st.warning("Please enter a project idea.")
19
  else:
20
+ with st.spinner("Reasoning..."):
21
  report = generate_full_report(idea)
22
 
23
  st.markdown(report)