JeCabrera commited on
Commit
5c05cb8
·
verified ·
1 Parent(s): 8cfd6ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,7 +9,7 @@ load_dotenv()
9
 
10
  # Configure Google Gemini API
11
  genai.configure(api_key=os.getenv('GOOGLE_API_KEY'))
12
- model = genai.GenerativeModel('gemini-2.0-flash')
13
 
14
  # Hide Streamlit menu and footer
15
  st.markdown("""
@@ -27,8 +27,8 @@ st.markdown(get_custom_css(), unsafe_allow_html=True)
27
  st.title('🚀 Great Offer Generator')
28
  st.markdown('''### Transform your skills into compelling offers!''')
29
 
30
- # Create two columns for layout
31
- col1, col2 = st.columns([1, 1])
32
 
33
  # Main input section in left column
34
  with col1:
 
9
 
10
  # Configure Google Gemini API
11
  genai.configure(api_key=os.getenv('GOOGLE_API_KEY'))
12
+ model = genai.GenerativeModel('gemini-pro')
13
 
14
  # Hide Streamlit menu and footer
15
  st.markdown("""
 
27
  st.title('🚀 Great Offer Generator')
28
  st.markdown('''### Transform your skills into compelling offers!''')
29
 
30
+ # Create two columns for layout - left column 40%, right column 60%
31
+ col1, col2 = st.columns([4, 6])
32
 
33
  # Main input section in left column
34
  with col1: