You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from langchain_core.prompts import PromptTemplate
|
|
|
|
prompt_template = PromptTemplate.from_template("帮我生成一个简短的,关于{topic}的报幕词。")
|
|
|
|
template = prompt_template.invoke({"topic": "相声"})
|
|
|
|
print(template); |