Spaces:
Running
Running
File size: 5,027 Bytes
6cbfd9d 619d75e 6cbfd9d 48ca5b5 2eab768 b1d0e81 ef94bea b1d0e81 ef94bea 4826b03 d4d2e2d b1d0e81 4826b03 d99543b 4826b03 6c5767e 5f6663a ee027ce b5d094d 4f2d678 0649e99 6c5767e d4d2e2d 6c5767e 0649e99 b1d0e81 ee027ce b1585ad a6c196c 6e8e124 b1d0e81 6cbfd9d b5d094d 2eab768 6cbfd9d e411757 232fce4 2eab768 ad8bd78 b1d0e81 233cecb 4f2d678 232fce4 b1d0e81 e411757 4f2d678 e411757 ee027ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
from dotenv import load_dotenv
import streamlit as st
import os
import google.generativeai as genai
import langchain
# Cargar las variables de entorno
load_dotenv()
# Configurar la API de Google
genai.configure(api_key=os.getenv("GOOGLE_API_KEY"))
# Función para obtener una cantidad de bullets
def get_gemini_response_bullets(target_audience, product, num_bullets, temperature):
model_choice = "gemini-1.5-flash" # Modelo por defecto
# Configuración del modelo generativo y las instrucciones del sistema
model = genai.GenerativeModel(
model_name=model_choice,
generation_config={
"temperature": temperature,
"top_p": 0.9, # Aumentar para permitir una mayor diversidad en las opciones generadas
"top_k": 90,
"max_output_tokens": 2048,
"response_mime_type": "text/plain",
},
system_instruction=(
f"Imagina que estás charlando con un amigo que está buscando {product}. "
f"Genera {num_bullets} bullets que suenen naturales y amigables, como si estuvieras contándole por qué debería interesarse. "
f"Entiendes perfectamente sus emociones y desafíos. Crea bullets que no solo informen, sino que hablen directamente al corazón de {target_audience}, "
f"Generando curiosidad y ganas de saber más sobre {product}. "
f"¡Haz que se sientan incluidos! Usa un tono amistoso y divertido. "
f"Por ejemplo, si están buscando {product}, dales un motivo irresistible para seguir leyendo. "
f"Incluye un encabezado atractivo que diga: 'Aquí tienes {num_bullets} razones por las que {target_audience} debería considerar {product}'."
)
)
# Crear la instrucción para generar bullets
chat_session = model.start_chat(
history=[
{
"role": "user",
"parts": [
f"Quiero que escribas {num_bullets} bullets que transmitan los beneficios de {product} de una manera que atraiga a {target_audience}. "
f"Conecta los problemas y deseos de {target_audience} de forma conversacional, no robotico, ni utilices ':', con un estilo amigable y divertido. "
f"Por favor, genera bullets creativos que hagan que {target_audience} se sienta emocionado por {product}."
],
},
]
)
# Crear un mensaje para el modelo que incluye los bullets generados
response = model.generate_content(chat_session.history) # Aquí usamos el historial del chat
if response and response.parts:
return response.parts[0].text
else:
raise ValueError("Lo sentimos, intenta con una combinación diferente de entradas.")
# Inicializar la aplicación Streamlit
st.set_page_config(page_title="Generador de Bullets", layout="wide")
# 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 balas persuasivas que inspiren a la acción.</h4>", unsafe_allow_html=True)
# Añadir CSS personalizado para el botón
st.markdown("""
<style>
div.stButton > button {
background-color: #FFCC00;
color: black;
width: 90%;
height: 60px;
font-weight: bold;
font-size: 22px;
text-transform: uppercase;
border: 1px solid #000000;
border-radius: 8px;
display: block;
margin: 0 auto;
}
div.stButton > button:hover {
background-color: #FFD700;
color: black;
}
</style>
""", unsafe_allow_html=True)
# Crear dos columnas para el layout (40% y 60%)
col1, col2 = st.columns([2, 3])
with col1:
# Campos de entrada
target_audience = st.text_input("¿Quién es tu público objetivo?")
product = st.text_input("¿Qué producto tienes en mente?")
# Campos de personalización sin acordeón
num_bullets = st.slider("Número de Bullets", min_value=1, max_value=15, value=5)
temperature = st.slider("Creatividad", min_value=0.0, max_value=1.0, value=0.5, step=0.1)
# Botón de enviar
submit = st.button("Generar Bullets")
# Mostrar los bullets generados
if submit:
if target_audience and product:
try:
# Obtener la respuesta del modelo
generated_bullets = get_gemini_response_bullets(target_audience, product, num_bullets, temperature)
col2.markdown(f"""
<div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;">
<h4>🧙🏻♂️ Mira la magia en acción:</h4>
<pre style="white-space: pre-wrap;">{generated_bullets}</pre>
</div>
""", unsafe_allow_html=True)
except ValueError as e:
st.error(str(e))
else:
st.error("Por favor, completa todos los campos.")
|