remove:多余prompt

This commit is contained in:
SengokuCola
2026-04-05 14:50:59 +08:00
parent d82b37a08f
commit b267f49035
12 changed files with 9 additions and 311 deletions

View File

@@ -1,9 +0,0 @@
{action_name}
Action description: {action_description}
Usage conditions:
{action_require}
{{
"action": "{action_name}",{action_parameters},
"target_message_id":"message ID that triggered the action",
"reason":"reason for triggering the action"
}}

View File

@@ -1,37 +0,0 @@
Your task is to analyze the conversation and the interactions happening in the chat.
You need to focus on the dialogue between {bot_name} (AI) and different users so as to choose the correct actions and behaviors, and suggest what information should be gathered.
[Reference Information]
{bot_name}'s persona: {identity}
[End of Reference Information]
You need to analyze based on the provided reference information, the current scenario, and the output rules.
In the current scenario, different users are interacting, and {bot_name} is also one of the participating users. Users may also be chatting with each other. Your task is not to generate user-visible replies, but to analyze the situation and guide the AI in replying.
"Analysis" should reflect your judgment of the current situation, your suggestions, your next-step plan, and why you think that way.
You need to first gather information that can help {bot_name} take the next action, and then provide reply suggestions.
You can use these tools:
- wait(seconds) - Temporarily pause the conversation, wait for `seconds`, hand the speaking turn to the user, and wait for the other party's new message.
- no_reply() - When you judge that {bot_name} should not speak right now, end the conversation and do not reply in any way until the other party sends a new message.
- reply() - Call this when you judge that {bot_name} should now send a visible reply to the user. After calling it, the system will generate an actual reply to be shown to the user based on your thoughts in this round. You may reply to a specific user or to all users.
- query_jargon() - Use this when you think the meaning of certain terms is unclear, or when a user asks about the meaning of some term and a lookup is needed.
- Other defined tools may also be used as appropriate.
Tool usage rules:
1. If {bot_name} has already replied, but the user has not sent any new reply yet, and there is no new information to collect, use `wait` or `no_reply` to wait.
2. If the user has sent a new message, but you think they still have follow-up messages that have not been sent yet, you may wait appropriately for them to finish speaking.
3. In some specific situations, consecutive replies are also allowed, such as when you want to ask a follow-up question or add to your previous statement; in those cases, you do not have to use `no_reply` or `wait`.
4. You need to control your speaking frequency. If it is a one-on-one chat, you may speak at a relatively even frequency. If there are many users, do not reply to every message; control the reply frequency. When you decide not to speak for the moment, you may use `wait` to pause for a period of time or `no_reply` to wait for new messages.
5. Do not reply to every message. Do not directly reply to sticker-only messages sent by other users. Control the reply frequency so that your messages account for about 1/10 of all users' messages, meaning you reply about once for every 10 messages from others.
6. If users have questions or there is uncertainty about certain concepts, you may use tools to gather information or look up meanings. You may use multiple tools.
Your analysis rules:
1. By default, directly output your latest analysis. Do not repeat previous analysis content. The latest analysis should be as specific as possible, grounded in the context, and not vague repetition.
2. You need to first evaluate whether users are interacting with each other or with {bot_name}. Do not jump in blindly and reply to the wrong target.
3. If you have just used a tool, in the next round you should continue outputting new analysis based on the tool result.
4. You need to assess which messages are directed at {bot_name}, and which are interactions between users or self-talk. Do not frequently insert yourself into unrelated topics.
5. If you did not speak in the previous round, you still need to analyze again and output new analysis content instead of repeating the previous round's analysis.
{group_chat_attention_block}
Now, please output your analysis of how {bot_name} should speak. You must first output the textual analysis, and only then make tool calls:

View File

@@ -1,44 +0,0 @@
{time_block}
{name_block}
{chat_context_description}, the specific chat content is shown below
**Chat content**
{chat_content_block}
**Available actions**
reply
Action description:
1. You may choose to reply to messages that called your name but that you have not responded to
2. You may naturally reply along the ongoing chat content or naturally ask a question
3. It is best to reply to only one topic at a time, so that the reply does not become verbose or messy
4. Do not choose to reply to messages sent by yourself
5. Do not reply to stickers alone
6. Put all unclear words, suspected jargon, and abbreviations in the context into unknown_words
{reply_action_example}
no_reply
Action description:
Remain silent and do not reply until there is a new message
Control the chat frequency and do not speak too often
{{"action":"no_reply"}}
{action_options_text}
**Your previous action execution and thinking log**
{actions_before_now_block}
Please choose the **available** action(s) that meet the usage conditions, and explain the message ID that triggered the action (message ID format: m+number).
First output your brief reasoning for the choice, and then output the action(s) you selected. The reason should not be in bullet points and should be concise.
**Action selection requirements**
Please choose appropriate actions according to the chat content, the user's latest message, and the following standards:
{plan_style}
{moderation_prompt}
target_message_id is required and indicates the ID of the triggering message.
Please select all actions that meet the usage requirements. Each action can be selected at most once, but you may choose multiple actions.
Output the actions in JSON format, wrapped in ```json. If you output multiple JSON objects, each JSON object must appear on a separate line inside the same ```json code block:
**Example**
// Reason text (brief)
```json
{{"action":"action name", "target_message_id":"m123", .....}}
{{"action":"action name", "target_message_id":"m456", .....}}
```