- updates for webm generation
Browse files
app.py
CHANGED
@@ -5,11 +5,12 @@ import streamlit as st
|
|
5 |
from transformers import pipeline
|
6 |
from constants import tweet_generator_prompt, absa_prompt
|
7 |
|
|
|
|
|
|
|
8 |
# Set up the title
|
9 |
st.title("Towards a Programmable Humanizing AI through Scalable Stance-Directed Architecture Dashboard")
|
10 |
|
11 |
-
# Adjust the layout for wider containers
|
12 |
-
st.set_page_config(layout="wide")
|
13 |
|
14 |
# Container for ideology selection spanning across first two columns
|
15 |
col1, col2, _ = st.columns([2, 2, 4]) # Adjust the ratios as needed for better appearance
|
|
|
5 |
from transformers import pipeline
|
6 |
from constants import tweet_generator_prompt, absa_prompt
|
7 |
|
8 |
+
# Adjust the layout for wider containers
|
9 |
+
st.set_page_config(layout="wide")
|
10 |
+
|
11 |
# Set up the title
|
12 |
st.title("Towards a Programmable Humanizing AI through Scalable Stance-Directed Architecture Dashboard")
|
13 |
|
|
|
|
|
14 |
|
15 |
# Container for ideology selection spanning across first two columns
|
16 |
col1, col2, _ = st.columns([2, 2, 4]) # Adjust the ratios as needed for better appearance
|