anychat / utils.py
hysts's picture
hysts HF staff
Fix
0a632f8
raw
history blame
902 Bytes
from typing import Callable
import gradio as gr
def get_app(
models: list[str],
default_model: str,
registry: Callable,
accept_token: bool = False,
**kwargs,
) -> gr.Blocks:
def update_model(new_model: str) -> list[gr.Column]:
return [gr.Column(visible=model_name == new_model) for model_name in models]
with gr.Blocks() as demo:
model = gr.Dropdown(label="Select Model", choices=models, value=default_model)
columns = []
for model_name in models:
with gr.Column(visible=model_name == default_model) as column:
gr.load(name=model_name, src=registry, accept_token=accept_token, **kwargs)
columns.append(column)
model.change(
fn=update_model,
inputs=model,
outputs=columns,
api_name=False,
queue=False,
)
return demo