Generating a product description
Imagine you're writing marketing copy for SonicPro headphones. Your goal is to generate a persuasive product description using DeepSeek.
Test how different prompting techniques, response lengths, and temperature settings influence the output!
Questo esercizio fa parte del corso
Working with DeepSeek in Python
Istruzioni dell'esercizio
- Create a detailed prompt to generate a product description for SonicPro headphones, including:
- Active noise cancellation (ANC)
- 40-hour battery life
- Foldable design
- Experiment with
max_tokensandtemperaturesettings to see how they affect the output.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
client = OpenAI(api_key="", base_url="https://api.together.xyz/v1")
# Create a detailed prompt
prompt = """
____
"""
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V3",
messages=[{"role": "user", "content": prompt}],
# Experiment with max_tokens and temperature settings
max_tokens=____,
temperature=____
)
print(response.choices[0].message.content)