Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
from transformers import pipeline
|
| 3 |
+
|
| 4 |
+
# Arcane Sigil to Invoke the Streamlit Interface
|
| 5 |
+
st.title('Text to German Translator')
|
| 6 |
+
|
| 7 |
+
# Scroll of Text Input
|
| 8 |
+
user_input = st.text_area("Input your text in Polish, Czech, Slovene, English, or Bulgarian:", "")
|