一般提示词示例

from langchain_community.llms.ollama import Ollama
from langchain_core.prompts import ChatPromptTemplate, PromptTemplate

llm = Ollama(model="qwen:7b")

template = '''
    我很想去{location}旅行,那里有那些好玩儿的地方?
'''
prompt = PromptTemplate(
    input_variables=['location'],
    template=template
)

final_prompt = prompt.format(location = '广东')
print(final_prompt)
response = llm(final_prompt)

print(response)

 

posted @ 2024-04-07 09:54  林**  阅读(28)  评论(0编辑  收藏  举报