ค้นหาและแทนที่
เครื่องมือค้นหาและแทนที่มีมานานหลายสิบปีแล้ว แต่มักจำกัดอยู่แค่การระบุและแทนที่คำหรือวลีที่ตรงกันเป๊ะเท่านั้น คุณได้รับข้อความส่วนหนึ่งที่พูดถึงรถยนต์ และจะใช้โมเดล chat completion เพื่อปรับข้อความนั้นให้พูดถึงเครื่องบินแทน โดยแก้ไขเนื้อหาให้เหมาะสม
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
การใช้งาน DeepSeek ใน Python
คำแนะนำการฝึกหัด
- สร้างคำขอเพื่อส่ง
promptไปยังdeepseek-ai/DeepSeek-V4-Pro-0813โดยเปลี่ยนข้อความที่พูดถึงรถยนต์ให้กลายเป็นเครื่องบิน และใช้โทเคนสูงสุด100โทเคน - ดึงข้อความคำตอบจาก API แล้วพิมพ์ออกมา
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
client = OpenAI(api_key="", base_url="https://api.together.xyz/v1")
prompt="""Replace car with plane and adjust phrase:
A car is a vehicle that is typically powered by an internal combustion engine or an electric motor. It has four wheels, and is designed to carry passengers and/or cargo on roads or highways. Cars have become a ubiquitous part of modern society, and are used for a wide variety of purposes, such as commuting, travel, and transportation of goods. Cars are often associated with freedom, independence, and mobility."""
# Create a request to the chat model
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V4-Pro-0813",
messages=[{"role": "user", "____": ____}],
____
)
# Extract and print the response text
print(response.choices[0].____.____)