christianweyer commited on
Commit
72e682b
1 Parent(s): 17afed2

Adding "Model" string to radio group

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -71,7 +71,7 @@ with gr.Blocks(title="Mistral Playground", css=css) as mistral_playground:
71
 
72
  with gr.Row(variant='panel'):
73
  api_key = gr.Textbox(type='password', placeholder='Your Mistral AI API key', lines=1, label="Mistral AI API Key")
74
- model = gr.Radio(
75
  choices=["open-mistral-7b", "open-mixtral-8x7b", "mistral-small-latest", "mistral-medium-latest", "mistral-large-latest"],
76
  value="mistral-medium-latest",
77
  )
 
71
 
72
  with gr.Row(variant='panel'):
73
  api_key = gr.Textbox(type='password', placeholder='Your Mistral AI API key', lines=1, label="Mistral AI API Key")
74
+ model = gr.Radio(label="Model",
75
  choices=["open-mistral-7b", "open-mixtral-8x7b", "mistral-small-latest", "mistral-medium-latest", "mistral-large-latest"],
76
  value="mistral-medium-latest",
77
  )