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
+7 -7
View File
@@ -29,12 +29,12 @@ use crate::{
use anyhow::Result;
use regex::Regex;
use std::sync::Arc;
use warp_core::{
use galaxy_core::{
features::FeatureFlag,
settings::{ChangeEventReason, Setting},
};
use warp_graphql::workspace::FeatureModelChoice;
use warpui::{AppContext, Entity, ModelContext, SingletonEntity, Tracked};
use galaxy_graphql::workspace::FeatureModelChoice;
use galaxyui::{AppContext, Entity, ModelContext, SingletonEntity, Tracked};
#[cfg(test)]
use crate::server::server_api::{team::MockTeamClient, workspace::MockWorkspaceClient};
@@ -122,7 +122,7 @@ pub struct WorkspacesMetadataResponse {
// independent queries.
pub struct WorkspacesMetadataWithPricing {
pub metadata: WorkspacesMetadataResponse,
pub pricing_info: Option<warp_graphql::billing::PricingInfo>,
pub pricing_info: Option<galaxy_graphql::billing::PricingInfo>,
}
pub struct CreateTeamResponse {
@@ -519,9 +519,9 @@ impl UserWorkspaces {
match self.aws_bedrock_host_enablement_setting() {
HostEnablementSetting::Enforce => true,
HostEnablementSetting::RespectUserSetting => *AISettings::as_ref(app)
.bedrock_enabled
.value(),
HostEnablementSetting::RespectUserSetting => {
*AISettings::as_ref(app).bedrock_enabled.value()
}
}
}