การสร้าง AI chatbot
เพื่อให้ POC สมบูรณ์ ให้นำประวัติข้อความมาผสานกับลูป for เพื่อส่งพรอมต์ซ้ำหลายครั้งไปยังโมเดล พร้อมบันทึกแต่ละคำตอบลงในประวัติข้อความตามลำดับ
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
การใช้งาน DeepSeek ใน Python
คำแนะนำการฝึกหัด
- วนลูปผ่านข้อความของผู้ใช้ (
user_msgs) - สร้าง dictionary สำหรับข้อความของผู้ใช้ในแต่ละรอบ แล้ว append เข้า
messages - ส่ง
messagesไปยังโมเดลในคำขอแบบแชท - Append dictionary ข้อความของ assistant เข้า
messages
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
client = OpenAI(api_key="", base_url="https://api.together.xyz/v1")
messages = [{"role": "system", "content": "You are a helpful math tutor that generates concise, one-sentence responses."}]
user_msgs = ["Explain what pi is.", "Summarize this in two bullet points."]
# Loop over the user questions
for q in ____:
print("User: ", q)
# Create a dictionary for the user message from q and append to messages
user_dict = {"role": ____, "content": ____}
messages.append(____)
# Create the API request
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V4-Pro",
____,
max_tokens=500
)
# Append the assistant's message to messages
assistant_dict = {"role": "assistant", "content": response.choices[0].message.content}
messages.append(____)
print("Assistant: ", response.choices[0].message.content, "\n")