Prompt templates

การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

Jonathan Bennion

AI Engineer & LangChain Contributor

Prompt templates

  • สูตรสำหรับกำหนด prompt ให้ LLMs
  • ประกอบด้วย: คำสั่ง ตัวอย่าง และบริบทเพิ่มเติม

Prompt template ที่มี placeholder สำหรับตัวแปรอินพุต

การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

Prompt templates

from langchain_core.prompts import PromptTemplate


template = "Expain this concept simply and concisely: {concept}"
prompt_template = PromptTemplate.from_template( template=template )
prompt = prompt_template.invoke({"concept": "Prompting LLMs"}) print(prompt)
text='Expain this concept simply and concisely: Prompting LLMs'
การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain
llm = HuggingFacePipeline.from_model_id(
    model_id="meta-llama/Llama-3.3-70B-Instruct",
    task="text-generation"
)

llm_chain = prompt_template | llm
concept = "Prompting LLMs" print(llm_chain.invoke({"concept": concept}))
Prompting LLMs (Large Language Models) refers to the process of giving a model a
specific input or question to generate a response.
  • LangChain Expression Language (LCEL): ตัวดำเนินการ | (pipe)
  • Chain: เชื่อมต่อการเรียกใช้คอมโพเนนต์ต่าง ๆ
การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

Chat models

  • บทบาทใน Chat: system, human, ai
from langchain_core.prompts import ChatPromptTemplate


template = ChatPromptTemplate.from_messages( [ ("system", "You are a calculator that responds with math."), ("human", "Answer this math question: What is two plus two?"), ("ai", "2+2=4"), ("human", "Answer this math question: {math}") ] )
การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

การผสาน ChatPromptTemplate

llm = ChatOpenAI(model="gpt-4o-mini", api_key='<OPENAI_API_TOKEN>')


llm_chain = template | llm
math='What is five times five?'
response = llm_chain.invoke({"math": math}) print(response.content)
5x5=25
การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

มาฝึกกันเถอะ!

การพัฒนาแอปพลิเคชัน LLM ด้วย LangChain

Preparing Video For Download...