Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
| 8 |
-
st.subheader("
|
| 9 |
|
| 10 |
idea = st.text_area(
|
| 11 |
"Enter your project idea",
|
| 12 |
height=200,
|
| 13 |
-
placeholder="Example: An AI system that detects
|
| 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("
|
| 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)
|