Spaces:
Sleeping
Sleeping
from dotenv import load_dotenv | |
import streamlit as st | |
import os | |
import google.generativeai as genai | |
import random | |
load_dotenv() | |
genai.configure(api_key=os.getenv("GOOGLE_API_KEY")) | |
# Funci贸n para obtener una menci贸n del producto de manera probabil铆stica | |
def get_random_product_mention(): | |
mentions = ["Indirecta", "Metaf贸rica"] | |
probabilities = [0.50, 0.50] | |
return random.choices(mentions, probabilities)[0] | |
# Crear la instrucci贸n de menci贸n basada en la opci贸n seleccionada | |
def get_mention_instruction(product_mention, product): | |
if product_mention == "Indirecta": | |
return f"Referencia sutilmente el producto '{product}' como una posible soluci贸n al problema del lector sin nombrarlo expl铆citamente." | |
elif product_mention == "Metaf贸rica": | |
return f"Introduce el producto '{product}' usando una met谩fora, conect谩ndolo simb贸licamente a la soluci贸n que necesita el lector." | |
return "" | |
# Funci贸n para generar los beneficios (bullets) basados en el enfoque | |
def generate_benefits(focus_points, product, target_audience, creativity, num_bullets): | |
model = genai.GenerativeModel("gemini-1.5-flash") | |
# Instrucci贸n del sistema para el modelo | |
system_instruction = ( | |
"You are a world-class copywriter, with expertise in crafting hooks, headlines, and subject lines that immediately " | |
"capture the reader's attention, prompting them to open the email or continue reading. Your skill lies in deeply understanding " | |
"the emotions, desires, and challenges of a specific audience. You are also an expert in creating benefits that connect symptoms " | |
"with problems, allowing you to design personalized strategies that resonate and motivate action. You know how to use proven " | |
"structures to attract your target audience, generating interest and creating a powerful connection. Your task is to generate " | |
"unusual, creative, and fascinating subject lines or headlines that spark curiosity and encourage the reader to engage further. " | |
"Respond in Spanish and use a numbered list format. Important: Only answer with subject lines, never include explanations or categories." | |
) | |
# Modificaci贸n en el prompt para integrar menciones del producto | |
prompt_base = f""" | |
Eres un experto en copywriting y tu objetivo es crear {{num_bullets}} bullets persuasivos que conecten emocionalmente con la audiencia {{target_audience}}. | |
Cada bullet debe abordar sus problemas, deseos o situaciones, mostrando c贸mo se pueden mejorar o solucionar gracias a una soluci贸n espec铆fica. | |
Piensa en c贸mo puedes captar la atenci贸n de la audiencia con frases impactantes, como si estuvieras hablando directamente con ellos. | |
La idea es resaltar el valor que aporta la soluci贸n, sin hacer que el producto suene como una venta forzada. | |
Adem谩s, aseg煤rate de mencionar el producto utilizando el siguiente enfoque: {{mention_instruction}}. | |
Los bullets deben ser claros, directos y generar curiosidad, invitando a la acci贸n de manera natural. | |
Evita la jerga t茅cnica y mant茅n la simplicidad, enfoc谩ndote en c贸mo el producto se integra de manera natural en la vida de la audiencia para mejorarla. | |
Usa enfoques creativos para conectar los beneficios del producto con lo que realmente le importa a la audiencia. | |
Crea {{num_bullets}} bullets persuasivos que muestren c贸mo el producto puede resolver o transformar una situaci贸n para la audiencia. | |
""" | |
# Generaci贸n del prompt espec铆fico con menci贸n | |
def generate_benefits(focus_points, product, target_audience, creativity, num_bullets): | |
product_mention = get_random_product_mention() | |
mention_instruction = get_mention_instruction(product_mention, product) | |
benefits = [] | |
for point in focus_points[:num_bullets]: | |
specific_prompt = prompt_base.format( | |
num_bullets=num_bullets, | |
target_audience=target_audience, | |
mention_instruction=mention_instruction | |
) + f"\n\nEnfoque: {point}\n" | |
response = genai.GenerativeModel( | |
model_name="gemini-1.5-flash", | |
generation_config={ | |
"temperature": creativity, | |
"top_p": 0.65, | |
"top_k": 280, | |
"max_output_tokens": 2048, | |
"response_mime_type": "text/plain", | |
}, | |
system_instruction=system_instruction | |
).generate_content([specific_prompt]) | |
if response and response.parts: | |
bullet = response.parts[0].text.strip() | |
benefits.append(bullet) | |
else: | |
benefits.append("No se pudo generar un beneficio para este enfoque.") | |
return benefits | |
# Configuraci贸n de Streamlit | |
st.set_page_config(page_title="Quick Prompt", layout="wide") | |
# Leer el contenido del archivo manual.md | |
with open("manual.md", "r", encoding="utf-8") as file: | |
manual_content = file.read() | |
# Mostrar el contenido del manual en el sidebar | |
st.sidebar.markdown(manual_content) | |
# Centrar el t铆tulo y el subt铆tulo | |
st.markdown("<h1 style='text-align: center;'>Impact Bullet Generator</h1>", unsafe_allow_html=True) | |
st.markdown("<h4 style='text-align: center;'>Transforma los pensamientos de tu audiencia en beneficios persuasivos que inspiren a la acci贸n.</h4>", unsafe_allow_html=True) | |
# Crear columnas | |
col1, col2 = st.columns([1, 2]) | |
# Columnas de entrada | |
with col1: | |
target_audience = st.text_input("P煤blico objetivo:", placeholder="Ejemplo: Estudiantes universitarios") | |
product = st.text_input("Producto relacionado:", placeholder="Ejemplo: Curso de productividad") | |
# Slider para la creatividad | |
creativity = st.slider("Creatividad (Temperatura)", min_value=0.0, max_value=1.0, value=0.7, step=0.1) | |
# Slider para el n煤mero de bullets | |
num_bullets = st.slider("N煤mero de Bullets", min_value=1, max_value=10, value=5, step=1) | |
focus_points = st.multiselect( | |
"Selecciona los enfoques que deseas utilizar:", | |
["Curiosidad", "CASI Imposible", "Autoridad y Credibilidad", "Contraste"], | |
default=[] | |
) | |
submit = st.button("Generar Beneficios") | |
# Mostrar los beneficios generados | |
if submit: | |
if focus_points and product and target_audience: | |
benefits = generate_benefits(focus_points, product, target_audience, creativity, num_bullets) | |
formatted_benefits = '<br style="line-height: 2;">'.join(benefits) | |
col2.markdown(f""" | |
<div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;"> | |
<h4>Mira los beneficios generados:</h4> | |
<p style="line-height: 2;">{formatted_benefits}</p> | |
</div> | |
""", unsafe_allow_html=True) | |
else: | |
col2.error("Por favor, proporciona al menos un enfoque, un producto y un p煤blico objetivo para generar beneficios.") | |