Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,10 +7,12 @@ generator = pipeline('text-generation', model='dbmdz/german-gpt2')
|
|
7 |
# Define the pages
|
8 |
def page_social_media_generator():
|
9 |
|
10 |
-
#
|
11 |
col1, col2 = st.columns(2)
|
12 |
-
col1
|
13 |
-
|
|
|
|
|
14 |
|
15 |
|
16 |
input_topic = st.text_input('Enter a medical topic', 'Type 1 Diabetes')
|
|
|
7 |
# Define the pages
|
8 |
def page_social_media_generator():
|
9 |
|
10 |
+
# Using st.columns to create a two-column layout
|
11 |
col1, col2 = st.columns(2)
|
12 |
+
with col1:
|
13 |
+
st.title("German Medical Content Manager")
|
14 |
+
with col2:
|
15 |
+
st.image('Content_Creation_Pic.png')
|
16 |
|
17 |
|
18 |
input_topic = st.text_input('Enter a medical topic', 'Type 1 Diabetes')
|