Spaces:
Sleeping
Sleeping
File size: 487 Bytes
c182e4e 58905ee c182e4e 6e96ded |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
import google.generativeai as genai
# Streamlit app layout
st.title('Personalized Product Description Writer')
# Input fields for the product details
st.subheader("Enter Product Details:")
product_name = st.text_input('Product Name', '')
product_features = st.text_area('Product Features (comma separated)', '')
target_audience = st.text_input('Target Audience', '')
# Footer
st.sidebar.markdown("---")
st.sidebar.markdown("Built with 🧠 by Hruday & Ollama")
|