Spaces:
Running
Running
Upload 11 files
Browse files- app.py +2 -2
- format/format.py +3 -0
app.py
CHANGED
@@ -22,7 +22,7 @@ if 'habilidades' not in st.session_state:
|
|
22 |
if 'creatividad' not in st.session_state:
|
23 |
st.session_state.creatividad = 1.0
|
24 |
if 'formato' not in st.session_state:
|
25 |
-
st.session_state.formato = "base_format
|
26 |
if 'nivel_conciencia' not in st.session_state:
|
27 |
# Usar el primer nivel del diccionario como valor predeterminado
|
28 |
first_key = list(CONSCIOUSNESS_LEVELS.keys())[0]
|
@@ -36,7 +36,7 @@ def get_model(temperature):
|
|
36 |
}
|
37 |
return genai.GenerativeModel('gemini-2.0-flash', generation_config=generation_config)
|
38 |
|
39 |
-
def generate_buyer_persona(product, skills, target_audience, temperature, consciousness_level="Ninguno", format_type="
|
40 |
if not product or not skills:
|
41 |
return "Por favor, completa los campos de producto y habilidades."
|
42 |
|
|
|
22 |
if 'creatividad' not in st.session_state:
|
23 |
st.session_state.creatividad = 1.0
|
24 |
if 'formato' not in st.session_state:
|
25 |
+
st.session_state.formato = "junguiano_format" # Cambiar de base_format a junguiano_format
|
26 |
if 'nivel_conciencia' not in st.session_state:
|
27 |
# Usar el primer nivel del diccionario como valor predeterminado
|
28 |
first_key = list(CONSCIOUSNESS_LEVELS.keys())[0]
|
|
|
36 |
}
|
37 |
return genai.GenerativeModel('gemini-2.0-flash', generation_config=generation_config)
|
38 |
|
39 |
+
def generate_buyer_persona(product, skills, target_audience, temperature, consciousness_level="Ninguno", format_type="junguiano_format"): # Cambiar aquí también
|
40 |
if not product or not skills:
|
41 |
return "Por favor, completa los campos de producto y habilidades."
|
42 |
|
format/format.py
CHANGED
@@ -318,6 +318,9 @@ Convertir su pequeña empresa local en una compañía reconocida a nivel naciona
|
|
318 |
"""
|
319 |
}
|
320 |
|
|
|
|
|
|
|
321 |
# Instrucciones para formato de listas con viñetas
|
322 |
bullet_format_instructions = """
|
323 |
\n\nIMPORTANT - LIST FORMAT:
|
|
|
318 |
"""
|
319 |
}
|
320 |
|
321 |
+
# Asegúrate de que la clave "example" exista y apunte al mismo contenido que "junguiano_example"
|
322 |
+
buyer_persona_formats["example"] = buyer_persona_formats["junguiano_example"]
|
323 |
+
|
324 |
# Instrucciones para formato de listas con viñetas
|
325 |
bullet_format_instructions = """
|
326 |
\n\nIMPORTANT - LIST FORMAT:
|