Raj Jayendrakumar Muchhala commited on
Commit
361912b
·
1 Parent(s): d1c4898

populate default prompt

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ MODEL = st.sidebar.selectbox(
25
 
26
  # Sidebar: Goal Customization
27
  st.sidebar.subheader("🎯 Customize Prompt")
28
- GOAL = st.sidebar.text_area("Specify specific prompt to extract clips (optional):", height=100)
29
  GOAL = GOAL.strip() if GOAL.strip() else DEFAULT_GOAL
30
 
31
  if not OPENAI_API_KEY:
 
25
 
26
  # Sidebar: Goal Customization
27
  st.sidebar.subheader("🎯 Customize Prompt")
28
+ GOAL = st.sidebar.text_area("Specify specific prompt to extract clips (optional):", value=DEFAULT_GOAL, height=100)
29
  GOAL = GOAL.strip() if GOAL.strip() else DEFAULT_GOAL
30
 
31
  if not OPENAI_API_KEY: