fix: split status activation line
This commit is contained in:
@@ -338,10 +338,13 @@ export function buildStatusMessage(args: StatusArgs): string {
|
|||||||
`Verbose: ${verboseLevel}`,
|
`Verbose: ${verboseLevel}`,
|
||||||
reasoningLevel !== "off" ? `Reasoning: ${reasoningLevel}` : null,
|
reasoningLevel !== "off" ? `Reasoning: ${reasoningLevel}` : null,
|
||||||
`Elevated: ${elevatedLevel}`,
|
`Elevated: ${elevatedLevel}`,
|
||||||
|
];
|
||||||
|
const optionsLine = optionParts.filter(Boolean).join(" · ");
|
||||||
|
const activationParts = [
|
||||||
groupActivationValue ? `👥 Activation: ${groupActivationValue}` : null,
|
groupActivationValue ? `👥 Activation: ${groupActivationValue}` : null,
|
||||||
`🪢 Queue: ${queueMode}${queueDetails}`,
|
`🪢 Queue: ${queueMode}${queueDetails}`,
|
||||||
];
|
];
|
||||||
const optionsLine = optionParts.filter(Boolean).join(" · ");
|
const activationLine = activationParts.filter(Boolean).join(" · ");
|
||||||
|
|
||||||
const modelLabel = model ? `${provider}/${model}` : "unknown";
|
const modelLabel = model ? `${provider}/${model}` : "unknown";
|
||||||
const authLabel = args.modelAuth ? ` · 🔑 ${args.modelAuth}` : "";
|
const authLabel = args.modelAuth ? ` · 🔑 ${args.modelAuth}` : "";
|
||||||
@@ -355,6 +358,7 @@ export function buildStatusMessage(args: StatusArgs): string {
|
|||||||
`📚 ${contextLine}`,
|
`📚 ${contextLine}`,
|
||||||
`🧵 ${sessionLine}`,
|
`🧵 ${sessionLine}`,
|
||||||
`⚙️ ${optionsLine}`,
|
`⚙️ ${optionsLine}`,
|
||||||
|
activationLine,
|
||||||
]
|
]
|
||||||
.filter(Boolean)
|
.filter(Boolean)
|
||||||
.join("\n");
|
.join("\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user