Remove Grok OAuth and legacy BYOK support
This commit is contained in:
+25
-1197
File diff suppressed because it is too large
Load Diff
@@ -69,7 +69,7 @@ use crate::workspace::Workspace;
|
||||
use crate::workspaces::user_workspaces::UserWorkspaces;
|
||||
use crate::ToastStack;
|
||||
|
||||
const DESCRIPTION_TEXT: &str = "Add MCP servers to extend the Warp Agent's capabilities. MCP servers expose data sources or tools to agents through a standardized interface, essentially acting like plugins. Add a custom server, or use the presets to get started with popular servers. You can also find team servers that have been shared with you here. ";
|
||||
const DESCRIPTION_TEXT: &str = "Add MCP servers to extend the Galaxy Agent's capabilities. MCP servers expose data sources or tools to agents through a standardized interface, essentially acting like plugins. Add a custom server, or use the presets to get started with popular servers. You can also find team servers that have been shared with you here. ";
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum MCPServersListPageViewEvent {
|
||||
|
||||
@@ -269,7 +269,7 @@ impl Display for SettingsSection {
|
||||
SettingsSection::MCPServers => write!(f, "MCP Servers"),
|
||||
SettingsSection::Scripting => write!(f, "Scripting"),
|
||||
SettingsSection::WarpDrive => write!(f, "Galaxy Drive"),
|
||||
SettingsSection::WarpAgent => write!(f, "Warp Agent"),
|
||||
SettingsSection::WarpAgent => write!(f, "Galaxy Agent"),
|
||||
SettingsSection::AgentProfiles => write!(f, "Profiles"),
|
||||
SettingsSection::AgentMCPServers => write!(f, "MCP servers"),
|
||||
SettingsSection::Knowledge => write!(f, "Knowledge"),
|
||||
@@ -544,7 +544,6 @@ pub mod flags {
|
||||
pub const SUGGESTED_RULES_FLAG: &str = "Suggested_Rules";
|
||||
pub const WARP_DRIVE_CONTEXT_FLAG: &str = "Warp_Drive_Context";
|
||||
pub const FILE_BASED_MCP_FLAG: &str = "File_Based_MCP";
|
||||
pub const WARP_CREDIT_FALLBACK_FLAG: &str = "Warp_Credit_Fallback";
|
||||
pub const SHOW_BASE_MODEL_PICKER_IN_PROMPT_FLAG: &str = "Show_Base_Model_Picker_In_Prompt";
|
||||
pub const DEBUG_SHOW_MEMORY_STATS_FLAG: &str = "Debug_Memory_Statistics";
|
||||
pub const ALLOW_NATIVE_WAYLAND: &str = "Allow_Native_Wayland";
|
||||
|
||||
@@ -171,7 +171,7 @@ fn match_data_countable_zero_is_not_truthy() {
|
||||
|
||||
#[test]
|
||||
fn subpage_display_names_are_correct() {
|
||||
assert_eq!(SettingsSection::WarpAgent.to_string(), "Warp Agent");
|
||||
assert_eq!(SettingsSection::WarpAgent.to_string(), "Galaxy Agent");
|
||||
assert_eq!(SettingsSection::AgentProfiles.to_string(), "Profiles");
|
||||
assert_eq!(SettingsSection::AgentMCPServers.to_string(), "MCP servers");
|
||||
assert_eq!(SettingsSection::Knowledge.to_string(), "Knowledge");
|
||||
|
||||
Reference in New Issue
Block a user