始める無料で始める

Few-shot prompting: all the examples!

Now for the finale! Try adding one final example Comfortable, but not very pretty = 2 to the prompt to see if there is further improvement.

この演習はコースの一部です

Working with DeepSeek in Python

コースを見る

演習の手順

  • Add the Comfortable, but not very pretty = 2 example to the prompt and re-run the request.

実践的なインタラクティブ演習

このサンプルコードを完成させて、この演習に挑戦してみましょう。

client = OpenAI(api_key="", base_url="https://api.together.xyz/v1")

# Add the final example
prompt = """Classify sentiment as 1-5 (negative to positive). Return no explanations:
1. ____
2. Love these! = 5
3. Unbelievably good! = 
4. Shoes fell apart on the second use. = 
5. The shoes look nice, but they aren't very comfortable. = 
6. Can't wait to show them off! = """

response = client.chat.completions.create(model="deepseek-ai/DeepSeek-V4-Pro", messages=[{"role": "user", "content": prompt}], max_tokens=500)
print(response.choices[0].message.content)
コードを編集して実行