mirror of https://github.com/Mai-with-u/MaiBot.git
21 lines
742 B
Python
21 lines
742 B
Python
from src.chat.utils.prompt_builder import Prompt
|
|
# from src.memory_system.memory_activator import MemoryActivator
|
|
|
|
|
|
def init_lpmm_prompt():
|
|
Prompt(
|
|
"""
|
|
你是一个专门获取知识的助手。你的名字是{bot_name}。现在是{time_now}。
|
|
群里正在进行的聊天内容:
|
|
{chat_history}
|
|
|
|
现在,{sender}发送了内容:{target_message},你想要回复ta。
|
|
请仔细分析聊天内容,考虑以下几点:
|
|
1. 内容中是否包含需要查询信息的问题
|
|
2. 是否有明确的知识获取指令
|
|
|
|
If you need to use the search tool, please directly call the function "lpmm_search_knowledge". If you do not need to use any tool, simply output "No tool needed".
|
|
""",
|
|
name="lpmm_get_knowledge_prompt",
|
|
)
|