aquibmoin commited on
Commit
e783c56
1 Parent(s): 296ef5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ with st.sidebar:
31
  llm = 'meta/meta-llama-3-70b-instruct'
32
 
33
  st.sidebar.subheader("System Prompt")
34
- user_input = st.sidebar.text_area("Context for Fine-tuning:", height=10)
35
 
36
  temperature = st.sidebar.slider('temperature', min_value=0.01, max_value=1.0, value=0.1, step=0.01)
37
  top_p = st.sidebar.slider('top_p', min_value=0.01, max_value=1.0, value=0.9, step=0.01)
 
31
  llm = 'meta/meta-llama-3-70b-instruct'
32
 
33
  st.sidebar.subheader("System Prompt")
34
+ user_input = st.sidebar.text_area("Context for Fine-tuning:", placeholder="e.g. You are a Space Mission Analyst...", height=10)
35
 
36
  temperature = st.sidebar.slider('temperature', min_value=0.01, max_value=1.0, value=0.1, step=0.01)
37
  top_p = st.sidebar.slider('top_p', min_value=0.01, max_value=1.0, value=0.9, step=0.01)