Youtube AI Writer Tools like yt_shorts_scripts, tags_generator, community_post_generator, shorts_script_generator

This commit is contained in:
ajaysi
2025-04-10 11:42:34 +05:30
parent d734c66f1a
commit 8ac2095ac4
9 changed files with 1932 additions and 64 deletions

View File

@@ -5,18 +5,26 @@ import base64
import logging
from datetime import datetime
# Set page config - must be the first Streamlit command
st.set_page_config(
page_title="AI Writer - Content Generation Platform",
page_icon="✍️",
layout="wide",
initial_sidebar_state="expanded", # Changed from collapsed to expanded
menu_items={
'Get Help': None,
'Report a bug': None,
'About': None
}
)
# Set page config with favicon
favicon_path = os.path.join("lib", "workspace", "alwrity_logo.png")
if os.path.exists(favicon_path):
st.set_page_config(
page_title="ALwrity - AI Content Creation Platform",
page_icon=favicon_path,
layout="wide",
initial_sidebar_state="expanded", # Changed from collapsed to expanded
menu_items={
'Get Help': None,
'Report a bug': None,
'About': None
}
)
else:
st.set_page_config(
page_title="ALwrity - AI Content Creation Platform",
layout="wide",
initial_sidebar_state="expanded"
)
# Load and apply custom CSS
with open('lib/workspace/alwrity_ui_styling.css', 'r') as f: