Spaces:
Runtime error
Runtime error
File size: 190 Bytes
fc699e1 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from llm import response
with gr.Blocks() as llm:
slider = gr.Slider(10, 100, render=False)
gr.ChatInterface(response, multimodal=True)
llm.launch(debug=True)
|