copywriter / app.py
JeCabrera's picture
Update app.py
1c005bc verified
raw
history blame
463 Bytes
import gradio as gr
import gemini_gradio
with gr.Blocks(fill_height=True) as demo:
gr.Markdown("**Note:** You need to use a SambaNova API key from [SambaNova Cloud](https://cloud.sambanova.ai/).")
gemini_interface = gr.load(
name="gemini-1.5-flash", # Se establece el modelo por defecto
src=gemini_gradio.registry,
fill_height=True,
chatbot=gr.Chatbot(height=250, type="messages")
)
demo.launch(ssr_mode=False)