

























@@ -7388,8 +7388,15 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
73887388 maximum: 9007199254740991,
73897389 },
73907390 visibleReplies: {
7391- type: "string",
7392- enum: ["automatic", "message_tool"],
7391+ anyOf: [
7392+ {
7393+ type: "string",
7394+ enum: ["automatic", "message_tool"],
7395+ },
7396+ {
7397+ type: "boolean",
7398+ },
7399+ ],
73937400 },
73947401 },
73957402 additionalProperties: false,
@@ -19019,8 +19026,15 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
1901919026"Prefix text prepended to inbound user messages before they are handed to the agent runtime. Use this sparingly for channel context markers and keep it stable across sessions.",
1902019027 },
1902119028 visibleReplies: {
19022- type: "string",
19023- enum: ["automatic", "message_tool"],
19029+ anyOf: [
19030+ {
19031+ type: "string",
19032+ enum: ["automatic", "message_tool"],
19033+ },
19034+ {
19035+ type: "boolean",
19036+ },
19037+ ],
1902419038 title: "Visible Replies",
1902519039 description:
1902619040'Controls visible source replies across direct, group, and channel conversations. "message_tool" keeps normal final replies private and requires message(action=send) for visible output; "automatic" posts normal replies as before.',
@@ -19052,8 +19066,15 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
1905219066"Maximum number of prior group messages loaded as context per turn for group sessions. Use higher values for richer continuity, or lower values for faster and cheaper responses.",
1905319067 },
1905419068 visibleReplies: {
19055- type: "string",
19056- enum: ["automatic", "message_tool"],
19069+ anyOf: [
19070+ {
19071+ type: "string",
19072+ enum: ["automatic", "message_tool"],
19073+ },
19074+ {
19075+ type: "boolean",
19076+ },
19077+ ],
1905719078 title: "Group Visible Replies",
1905819079 description:
1905919080'Overrides visible source replies for group/channel conversations. Defaults to "message_tool" when no global visible reply policy is set. "message_tool" keeps normal final replies private and requires message(action=send) for room output; "automatic" posts normal replies as before.',
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。