Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def generate_headlines(number_of_headlines, target_audience, product, temperatur
|
|
16 |
# Llama a la API de Claude para generar titulares
|
17 |
message = client.messages.create(
|
18 |
model="claude-3-5-sonnet-20240620",
|
19 |
-
max_tokens=
|
20 |
temperature=temperature,
|
21 |
system="You are a world-class copywriter, with experience in creating hooks, headlines, and subject lines that immediately capture attention. Your skill lies in deeply understanding the emotions, desires, and challenges of a specific audience, allowing you to design personalized marketing strategies that resonate and motivate action. You know how to use proven structures to attract your target audience, generating interest and achieving a powerful connection that drives desired results in advertising and content campaigns.\n\nAnswer in Spanish.",
|
22 |
messages=[
|
@@ -48,6 +48,7 @@ with gr.Blocks(css=f"""
|
|
48 |
.gradio-container {{ background-color: {logo_colors["background"]}; }}
|
49 |
.headline-output {{ text-align: left; white-space: pre-line; }}
|
50 |
.gradio-slider .slider-container {{ margin: 20px 0; }}
|
|
|
51 |
""") as demo:
|
52 |
gr.Markdown(
|
53 |
f"""
|
@@ -76,7 +77,7 @@ with gr.Blocks(css=f"""
|
|
76 |
with gr.Column(scale=1):
|
77 |
submit_btn = gr.Button("Generar Titulares", elem_id="submit-btn")
|
78 |
|
79 |
-
output = gr.Textbox(label="Titulares Generados", lines=10
|
80 |
|
81 |
submit_btn.click(
|
82 |
fn=gradio_generate_headlines,
|
|
|
16 |
# Llama a la API de Claude para generar titulares
|
17 |
message = client.messages.create(
|
18 |
model="claude-3-5-sonnet-20240620",
|
19 |
+
max_tokens=1000,
|
20 |
temperature=temperature,
|
21 |
system="You are a world-class copywriter, with experience in creating hooks, headlines, and subject lines that immediately capture attention. Your skill lies in deeply understanding the emotions, desires, and challenges of a specific audience, allowing you to design personalized marketing strategies that resonate and motivate action. You know how to use proven structures to attract your target audience, generating interest and achieving a powerful connection that drives desired results in advertising and content campaigns.\n\nAnswer in Spanish.",
|
22 |
messages=[
|
|
|
48 |
.gradio-container {{ background-color: {logo_colors["background"]}; }}
|
49 |
.headline-output {{ text-align: left; white-space: pre-line; }}
|
50 |
.gradio-slider .slider-container {{ margin: 20px 0; }}
|
51 |
+
.gradio-column {{ margin: 20px; }}
|
52 |
""") as demo:
|
53 |
gr.Markdown(
|
54 |
f"""
|
|
|
77 |
with gr.Column(scale=1):
|
78 |
submit_btn = gr.Button("Generar Titulares", elem_id="submit-btn")
|
79 |
|
80 |
+
output = gr.Textbox(label="Titulares Generados", lines=10)
|
81 |
|
82 |
submit_btn.click(
|
83 |
fn=gradio_generate_headlines,
|