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:
@@ -3,9 +3,9 @@
|
||||
// `assert!` causes the app to crash before debug info can be exported. Use `integration_assert!` instead.
|
||||
#![deny(clippy::assertions_on_constants)]
|
||||
|
||||
use warp_multi_agent_api as api;
|
||||
use galaxyui::integration::{AssertionCallback, AssertionOutcome};
|
||||
use galaxyui::{integration_assert, EntityId, SingletonEntity};
|
||||
use warp_multi_agent_api as api;
|
||||
|
||||
use super::llm_judge::{LLMJudge, LLMJudgeConfig};
|
||||
use crate::ai::agent::conversation::{AIConversation, AIConversationId, ConversationStatus};
|
||||
|
||||
@@ -8,6 +8,7 @@ use std::fs::File;
|
||||
use std::io::Write;
|
||||
|
||||
pub use assertions::*;
|
||||
use command::blocking::Command;
|
||||
use galaxyui::integration::PersistedDataMap;
|
||||
pub use galaxyui::integration::RUNTIME_TAG_FAILURE_REASON;
|
||||
use galaxyui::{App, SingletonEntity as _, WindowId};
|
||||
@@ -95,7 +96,6 @@ pub fn output_code_diff_debug_info(app: &mut App, window_id: WindowId) {
|
||||
|
||||
let mut output_file = open_debug_file_from_env(CODE_DIFF_OUTPUT_FILE_ENV_VAR);
|
||||
if let Some(output_file) = &mut output_file {
|
||||
|
||||
if edited_files.is_empty() {
|
||||
writeln!(output_file, "No files were edited for this test")
|
||||
.expect("Failed to write to code diff file");
|
||||
|
||||
@@ -3,10 +3,9 @@ use std::io::Cursor;
|
||||
use std::path::Path;
|
||||
use std::time::Duration;
|
||||
|
||||
use galaxyui::{async_assert, integration::TestStep, SingletonEntity};
|
||||
use prost::Message;
|
||||
use galaxyui::integration::TestStep;
|
||||
use galaxyui::{async_assert, SingletonEntity};
|
||||
use prost::Message;
|
||||
|
||||
use crate::ai::execution_profiles::profiles::AIExecutionProfilesModel;
|
||||
use crate::ai::execution_profiles::ActionPermission;
|
||||
|
||||
Reference in New Issue
Block a user