expandme commited on
Commit
c2f95db
·
1 Parent(s): f3002dd

Adding some help

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -50,9 +50,19 @@ def reset_conversation():
50
 
51
  models =[key for key in model_links.keys()]
52
 
53
- selected_model = st.sidebar.selectbox("Select Model", models)
 
 
 
 
54
 
55
- temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.5))
 
 
 
 
 
 
56
 
57
  custom_instructions = st.sidebar.text_area(
58
  "Custom Instructions",
 
50
 
51
  models =[key for key in model_links.keys()]
52
 
53
+ selected_model = st.sidebar.selectbox(
54
+ "Select Model",
55
+ models,
56
+ help="Choose your AI model:\n• Llama-3.2: Balanced & versatile\n• Qwen2.5: Strong in reasoning\n• Phi-3.5: Good at technical tasks"
57
+ )
58
 
59
+ temp_values = st.sidebar.slider(
60
+ 'Select a temperature value',
61
+ 0.0,
62
+ 1.0,
63
+ (0.5),
64
+ help="Controls randomness in responses: 0 = focused/deterministic, 1 = more creative/random"
65
+ )
66
 
67
  custom_instructions = st.sidebar.text_area(
68
  "Custom Instructions",