File size: 1,523 Bytes
5458788 c74fd81 5458788 c74fd81 5458788 c74fd81 |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import gradio as gr
# Function to simulate conversation with model selection
def chat_interface(user_input, selected_model):
response = f"[{selected_model}] says: You entered '{user_input}'. This is a simulated response."
return response
# List of available models
models = ["Model A", "Model B", "Model C"]
# Gradio Interface
with gr.Blocks(css=".retro-terminal {background-color: black; color: #00FF00; font-family: monospace;}") as demo:
with gr.Row():
gr.Markdown(
"### Welcome to the Retro Hacker Chat! \n"
"_Experience the retro vibe while interacting with your models._",
elem_classes="retro-terminal"
)
with gr.Row():
user_input = gr.Textbox(
label="Enter your message:",
placeholder="Type your message here...",
elem_classes="retro-terminal"
)
model_selector = gr.Dropdown(
choices=models,
label="Select Model",
value=models[0],
elem_classes="retro-terminal"
)
with gr.Row():
response_box = gr.Textbox(
label="Model Response:",
placeholder="The model's response will appear here...",
elem_classes="retro-terminal"
)
with gr.Row():
send_button = gr.Button("Send", elem_classes="retro-terminal")
# Link input and output
send_button.click(chat_interface, inputs=[user_input, model_selector], outputs=response_box)
# Launch the interface
demo.launch()
|