Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+4 -6
View File
@@ -2,16 +2,14 @@ use std::collections::{HashMap, HashSet};
use std::path::PathBuf;
use anyhow::Result;
use galaxy_completer::parsers::simple::decompose_command;
use galaxy_core::user_preferences::GetUserPreferences;
use galaxy_core::{features::FeatureFlag, settings::Setting};
use galaxy_util::path::EscapeChar;
use galaxyui::{AppContext, Entity, EntityId, ModelContext, SingletonEntity};
use serde::{Deserialize, Serialize};
use galaxy_completer::parsers::simple::{command_without_leading_env_vars, decompose_command};
use galaxy_core::execution_mode::AppExecutionMode;
use galaxy_core::features::FeatureFlag;
use galaxy_core::settings::Setting;
use galaxy_core::user_preferences::GetUserPreferences;
use galaxy_util::path::EscapeChar;
use galaxyui::{AppContext, Entity, EntityId, ModelContext, SingletonEntity};
use serde::{Deserialize, Serialize};
use super::BlocklistAIHistoryModel;
use crate::ai::agent::conversation::AIConversationId;