expandme commited on
Commit
461c47d
·
1 Parent(s): 4388224

More plain text formating in help

Browse files
Files changed (1) hide show
  1. app.py +12 -4
app.py CHANGED
@@ -55,9 +55,11 @@ selected_model = st.sidebar.selectbox(
55
  models,
56
  help="""Choose your AI model:
57
 
58
- • Llama-3.2: Balanced & versatile
59
- • Qwen2.5: Strong in reasoning
60
- Phi-3.5: Good at technical tasks"""
 
 
61
  )
62
 
63
  temp_values = st.sidebar.slider(
@@ -65,7 +67,13 @@ temp_values = st.sidebar.slider(
65
  0.0,
66
  1.0,
67
  (0.5),
68
- help="Controls randomness in responses: 0 = focused/deterministic, 1 = more creative/random"
 
 
 
 
 
 
69
  )
70
 
71
  custom_instructions = st.sidebar.text_area(
 
55
  models,
56
  help="""Choose your AI model:
57
 
58
+ • Llama-3.2: Balanced & versatile
59
+
60
+ Qwen2.5: Strong in reasoning
61
+
62
+ • Phi-3.5: Good at technical tasks"""
63
  )
64
 
65
  temp_values = st.sidebar.slider(
 
67
  0.0,
68
  1.0,
69
  (0.5),
70
+ help="""Controls randomness in responses:
71
+
72
+ 0 = focused/deterministic
73
+
74
+ 0.5 = balanced
75
+
76
+ 1 = more creative/random"""
77
  )
78
 
79
  custom_instructions = st.sidebar.text_area(