cstr commited on
Commit
a0e7edc
Β·
verified Β·
1 Parent(s): 001e628

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -9
app.py CHANGED
@@ -511,15 +511,20 @@ with gr.Blocks(css="""
511
  )
512
 
513
  with gr.Column(visible=False) as hf_options:
514
- hf_model = gr.Dropdown(
515
- choices=list(MODEL_CONTEXT_SIZES["HuggingFace Inference"].keys()),
516
- value="microsoft/phi-3-mini-4k-instruct",
517
- label="HuggingFace Model"
518
- )
519
- hf_api_key = gr.Textbox(
520
- label="πŸ”‘ HuggingFace API Key",
521
- type="password"
522
- )
 
 
 
 
 
523
 
524
  with gr.Column(visible=False) as groq_options:
525
  groq_model = gr.Dropdown(
 
511
  )
512
 
513
  with gr.Column(visible=False) as hf_options:
514
+ hf_model = gr.Dropdown(
515
+ choices=list(model_registry.hf_models.keys()),
516
+ label="πŸ”§ HuggingFace Model",
517
+ value="Phi-3 Mini 4K"
518
+ )
519
+ hf_custom_model = gr.Textbox( # This needs to be defined before being used
520
+ label="Custom Model ID",
521
+ placeholder="Enter custom model ID...",
522
+ visible=False
523
+ )
524
+ hf_api_key = gr.Textbox(
525
+ label="πŸ”‘ HuggingFace API Key",
526
+ type="password"
527
+ )
528
 
529
  with gr.Column(visible=False) as groq_options:
530
  groq_model = gr.Dropdown(