शुरू करेंमुफ़्त में शुरू करें

फ्यू-शॉट प्रॉम्प्टिंग: सारे उदाहरण!

अब फाइनल के लिए तैयार! प्रॉम्प्ट में एक आख़िरी उदाहरण Comfortable, but not very pretty = 2 जोड़कर देखें कि क्या और सुधार होता है.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Python में DeepSeek के साथ काम करना

पाठ्यक्रम देखें

अभ्यास निर्देश

  • प्रॉम्प्ट में Comfortable, but not very pretty = 2 वाला उदाहरण जोड़ें और रिक्वेस्ट को दोबारा चलाएँ.

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

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)
कोड संपादित करें और चलाएँ