BounharAbdelaziz's picture
Update app.py
0228c51 verified
raw
history blame contribute delete
641 Bytes
from gradio_client import Client
import gradio as gr
client = Client("https://23f116d9e0fa898f99.gradio.live/")
def respond(english_text):
darija_translated_text = client.predict(
text=english_text,
api_name="/predict"
)
return darija_translated_text
# Create the Gradio interface
app = gr.Interface(fn=respond,
inputs="text",
outputs="text",
title="Terjman-Supreme-v2 πŸ‘¨β€πŸ’»πŸ€―",
description="Translate English text to Moroccan Darija using our top and biggest model (3.3B) πŸ€—")
if __name__ == "__main__":
app.launch()