Spaces:
Running
Running
Tu Nombre commited on
Commit ·
660cbd5
1
Parent(s): 1576000
fix comillas prompt
Browse files- cliente_template.py +1 -1
cliente_template.py
CHANGED
|
@@ -38,7 +38,7 @@ def log(msg):
|
|
| 38 |
def generar_guion():
|
| 39 |
client = Groq(api_key=GROQ_KEY)
|
| 40 |
res = client.chat.completions.create(
|
| 41 |
-
messages=[{"role":"user","content":f"Escribe SOLO el texto
|
| 42 |
model="llama-3.3-70b-versatile", temperature=0.82
|
| 43 |
)
|
| 44 |
return res.choices[0].message.content.strip()
|
|
|
|
| 38 |
def generar_guion():
|
| 39 |
client = Groq(api_key=GROQ_KEY)
|
| 40 |
res = client.chat.completions.create(
|
| 41 |
+
messages=[{"role":"user","content":f"Escribe SOLO el texto a narrar en un video de 60 segundos sobre {NICHO}. NO incluyas indicaciones como narrador dice, voz en off, intro, outro, ni nada que no sea el texto a leer. Directo al grano, sin simbolos, sin hashtags, sin emojis."}],
|
| 42 |
model="llama-3.3-70b-versatile", temperature=0.82
|
| 43 |
)
|
| 44 |
return res.choices[0].message.content.strip()
|