JeCabrera commited on
Commit
84b1387
verified
1 Parent(s): cd03ba7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -510,14 +510,14 @@ IMPORTANT FINAL REMINDER:
510
  story_instruction = f"{natural_instruction}\n\n{story_instruction}"
511
 
512
  response = model.generate_content([story_instruction])
513
- if response and response.parts:
514
- story = response.parts[0].text.strip()
515
- # Generar el titular usando la f贸rmula seleccionada
516
- headline = generate_headline_for_story(model, story, formula_type, product, target_audience, mood)
517
- # Combinar titular y historia
518
- if headline:
519
- return f"# {headline}\n\n{story}"
520
- return story
521
  raise ValueError("No se pudo generar la historia")
522
 
523
  # Inicializar la aplicaci贸n Streamlit
 
510
  story_instruction = f"{natural_instruction}\n\n{story_instruction}"
511
 
512
  response = model.generate_content([story_instruction])
513
+ if response and response.parts:
514
+ story = response.parts[0].text.strip()
515
+ # Generar el titular usando la f贸rmula seleccionada
516
+ headline = generate_headline_for_story(model, story, formula_type, product, target_audience, mood)
517
+ # Combinar titular y historia
518
+ if headline:
519
+ return f"# {headline}\n\n{story}"
520
+ return story
521
  raise ValueError("No se pudo generar la historia")
522
 
523
  # Inicializar la aplicaci贸n Streamlit