//! Per-test environment passed to on_run callback.
//! Provides isolated home directory and current model name.
/// Environment for each test iteration.
/// Created fresh before each test() call with the current model.
pubstructEnvRun{/// Isolated home directory for this test run.
pubhome: String,
/// Ollama model being used for this test query.
pubmodel: String,
}