Spaces:
Running
Running
File size: 866 Bytes
32cae45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import gradio as gr
from src.ui.components.actions import generate_text, clear
from src.ui.components.inputs import main_component
from src.ui.components.static import model_settings, load_buttons, load_examples
def form_block():
country, starting_point, query, model = main_component()
output = gr.Textbox(label="Your recommendations are sustainable with respect to the environment, your starting "
"location, and month of travel.", lines=4)
max_new_tokens, temperature = model_settings()
# Load the buttons for the interface
load_buttons(country, starting_point, query, model,
max_new_tokens, temperature,
output,
generate_text_fn=generate_text,
clear_fn=clear)
load_examples(country, starting_point, query, model, output, generate_text)
|