breadlicker45 commited on
Commit
e230cfc
1 Parent(s): 9ad6c08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -31,12 +31,14 @@ with col1:
31
  with col2:
32
  select_model = st.radio(
33
  "Select the model to use:",
34
- ('gpt-ya', 'gpt-ya-1-1'), index = 1)
35
 
36
  if select_model == 'gpt-ya':
37
  model = 'breadlicker45/gpt-ya'
38
  elif select_model == 'gpt-ya-1-1':
39
  model = 'BreadAi/gpt-YA-1-1_70M'
 
 
40
 
41
  with st.spinner('Loading Model... (This may take a while)'):
42
  generator = get_model()
 
31
  with col2:
32
  select_model = st.radio(
33
  "Select the model to use:",
34
+ ('gpt-ya', 'gpt-ya-1-1', 'gpt-ya-1-1-160M'), index = 2)
35
 
36
  if select_model == 'gpt-ya':
37
  model = 'breadlicker45/gpt-ya'
38
  elif select_model == 'gpt-ya-1-1':
39
  model = 'BreadAi/gpt-YA-1-1_70M'
40
+ elif select_model == 'gpt-ya-1-1-160M':
41
+ model = 'BreadAi/gpt-YA-1-1_160M'
42
 
43
  with st.spinner('Loading Model... (This may take a while)'):
44
  generator = get_model()