Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 687 Bytes
2eb382e e8fb5c0 2eb382e 0a632f8 2eb382e 0a632f8 2eb382e 0a632f8 2eb382e 0a632f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import ai_gradio
from utils_ai_gradio import get_app
# Get the Gemini models but keep their full names for loading
GEMINI_MODELS_FULL = [
k for k in ai_gradio.registry.keys()
if k.startswith('gemini:')
]
# Create display names without the prefix
GEMINI_MODELS_DISPLAY = [
k.replace('gemini:', '')
for k in GEMINI_MODELS_FULL
]
# Create and launch the interface using get_app utility
demo = get_app(
models=GEMINI_MODELS_FULL, # Use the full names with prefix
default_model=GEMINI_MODELS_FULL[-1],
dropdown_label="Select Gemini Model",
choices=GEMINI_MODELS_DISPLAY, # Display names without prefix
src=ai_gradio.registry,
fill_height=True,
)
|