Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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-
|
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([
|
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:
|