diff --git a/desktop/src-tauri/src/classroom_commands/chat.rs b/desktop/src-tauri/src/classroom_commands/chat.rs index d10aac0..9d441a1 100644 --- a/desktop/src-tauri/src/classroom_commands/chat.rs +++ b/desktop/src-tauri/src/classroom_commands/chat.rs @@ -114,7 +114,7 @@ pub async fn classroom_chat( } /// Retrieve chat history for a classroom -// @connected +// @reserved: no frontend consumer yet #[tauri::command] pub async fn classroom_chat_history( chat_store: State<'_, ChatStore>, diff --git a/desktop/src-tauri/src/kernel_commands/orchestration.rs b/desktop/src-tauri/src/kernel_commands/orchestration.rs index dea58ad..b869308 100644 --- a/desktop/src-tauri/src/kernel_commands/orchestration.rs +++ b/desktop/src-tauri/src/kernel_commands/orchestration.rs @@ -206,6 +206,7 @@ impl From for OrchestrationRes /// /// Either auto-composes a graph from skill_ids, or uses a pre-defined graph. /// Executes with true parallel execution within each dependency level. +// @reserved: no frontend consumer yet #[tauri::command] pub async fn orchestration_execute( state: State<'_, KernelState>, @@ -249,6 +250,7 @@ pub async fn orchestration_execute( } /// Validate an orchestration graph without executing it +// @reserved: no frontend consumer yet #[tauri::command] pub async fn orchestration_validate( state: State<'_, KernelState>,