Spaces:
Sleeping
Sleeping
Workflow added
Browse files- app.py +5 -0
- workflow_graph.png +0 -0
app.py
CHANGED
|
@@ -185,6 +185,7 @@ st.markdown("""
|
|
| 185 |
|
| 186 |
# Sidebar components
|
| 187 |
with st.sidebar:
|
|
|
|
| 188 |
st.subheader("Configuration")
|
| 189 |
|
| 190 |
# Groq API Key Input
|
|
@@ -209,6 +210,10 @@ with st.sidebar:
|
|
| 209 |
st.session_state.clear()
|
| 210 |
st.rerun()
|
| 211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
# Main content
|
| 213 |
topic = st.text_input("Enter your blog topic:", placeholder="Generative AI in Healthcare")
|
| 214 |
generate_btn = st.button("Generate Blog Post")
|
|
|
|
| 185 |
|
| 186 |
# Sidebar components
|
| 187 |
with st.sidebar:
|
| 188 |
+
|
| 189 |
st.subheader("Configuration")
|
| 190 |
|
| 191 |
# Groq API Key Input
|
|
|
|
| 210 |
st.session_state.clear()
|
| 211 |
st.rerun()
|
| 212 |
|
| 213 |
+
|
| 214 |
+
st.subheader("Workflow Overview")
|
| 215 |
+
st.image("workflow_graph.png")
|
| 216 |
+
|
| 217 |
# Main content
|
| 218 |
topic = st.text_input("Enter your blog topic:", placeholder="Generative AI in Healthcare")
|
| 219 |
generate_btn = st.button("Generate Blog Post")
|
workflow_graph.png
ADDED
|