joeshore commited on
Commit
a1807ec
·
1 Parent(s): 102107d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ all_input = st.text_area('模型输入', value="""
12
  top_p = st.slider('top_p', 0.0, 1.0, 0.95)
13
  temperature = st.slider('temperature', 0.0, 1.0, 0.85)
14
  max_tokens = st.slider('max tokens', 4, 512, 64)
15
- model_type = st.selectbox('model', ('medium', 'large', 'xl'))
16
 
17
 
18
  def completion(prompt):
 
12
  top_p = st.slider('top_p', 0.0, 1.0, 0.95)
13
  temperature = st.slider('temperature', 0.0, 1.0, 0.85)
14
  max_tokens = st.slider('max tokens', 4, 512, 64)
15
+ model_type = st.selectbox('model', ('large', 'xl'))
16
 
17
 
18
  def completion(prompt):