aipack 0.7.7-WIP

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::agent::AgentOptions;

pub const TEST_MODEL: &str = "gpt-4o-mini";

pub const SANDBOX_01_WKS_DIR: &str = "./tests-data/sandbox-01";

pub const SANDBOX_01_BASE_AIPACK_DIR: &str = "./tests-data/.aipack-base";

#[allow(unused)]
pub const TESTS_TMP_DIR: &str = "./tests-data/tmp";

pub fn default_agent_config_for_test() -> AgentOptions {
	AgentOptions::new(TEST_MODEL)
}