Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+4 -4
View File
@@ -74,12 +74,12 @@ use session_sharing_protocol::common::ParticipantId;
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
use std::time::Duration;
use warp_core::assertions::safe_assert;
use galaxy_core::assertions::safe_assert;
use warp_multi_agent_api::{message, Task, ToolType};
use warpui::r#async::{SpawnedFutureHandle, Timer};
use galaxyui::r#async::{SpawnedFutureHandle, Timer};
use super::orchestration_events::{OrchestrationEventService, OrchestrationEventServiceEvent};
use warpui::{AppContext, Entity, EntityId, ModelContext, ModelHandle, SingletonEntity};
use galaxyui::{AppContext, Entity, EntityId, ModelContext, ModelHandle, SingletonEntity};
#[derive(Debug, Clone)]
pub struct SessionContext {
@@ -111,7 +111,7 @@ impl SessionContext {
/// Returns the remote host ID if this is a `WarpifiedRemote` session with
/// a connected `RemoteServerClient`.
pub fn host_id(&self) -> Option<&warp_core::HostId> {
pub fn host_id(&self) -> Option<&galaxy_core::HostId> {
match &self.session_type {
Some(SessionType::WarpifiedRemote { host_id }) => host_id.as_ref(),
Some(SessionType::Local) | None => None,