Spaces:
Running
Running
Adding "Model" string to radio group
#1
by
christianweyer
- opened
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 |
)
|