+
+
Orchestration
+ {status && (
+
+ {status.status === "accepted"
+ ? "contextual-orchestrator"
+ : `contextual-orchestrator · ${status.status_reason ?? "unavailable"}`}
+
+ )}
+
+ {error && {error}
}
+ {status === null && !error && Loading orchestration...
}
+ {status && status.status === "unavailable" && (
+ Orchestration · contextual-orchestrator not available
+ )}
+ {status && status.status === "accepted" && status.envelopes.length === 0 && (
+ No accepted orchestration envelope.
+ )}
+ {status && status.envelopes.length > 0 && (
+
+ {status.envelopes.map((envelope) => (
+ -
+ {envelope.next_action}
+ {envelope.mode}
+
+ ))}
+
+ )}
+
+ );
+}
+
function RankingsPanel({
accessToken,
onSelectPost,
@@ -1689,6 +1736,7 @@ function PostList({ accessToken }: { accessToken: string }) {
return (
<>
+