Spaces:
Runtime error
Runtime error
File size: 983 Bytes
ae4ea47 3e994a1 42d0feb a36aeae |
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 |
import gradio as gr
# Define a list of word and translation pairs
word_translations = [
{"word": "Hello", "translation": "Hola"},
{"word": "Goodbye", "translation": "Adiós"},
{"word": "Thank you", "translation": "Gracias"},
{"word": "Please", "translation": "Por favor"}
]
# Initialize an index to keep track of the current word
current_index = 0
# Function to display the current word and translation
def display_word():
global current_index
word_translation = word_translations[current_index]
current_index = (current_index + 1) % len(word_translations)
return f"Word: {word_translation['word']}<br>Translation: {word_translation['translation']}"
# Create a Gradio interface
iface = gr.Interface(
fn=display_word,
live=True,
title="Word Translation App",
description="Click 'Next' to view the next word and translation.",
inputs=[],
outputs=["html"],
layout="vertical"
)
# Start the Gradio interface
iface.launch()
|