package llmmeta import ( "os" "testing" "time" "gitea.stevedudenhoeffer.com/steve/executus/model" ) // TestMain configures a minimal model tier table so the helper's // model.ParseModelForContext("fast"/"standard") resolves. The actual LLM call // is stubbed per-test via SetCompleteForTest, so these specs are only parsed // (anthropic registers with an empty key and errors at call time, not parse). func TestMain(m *testing.M) { model.Configure(nil, map[string]string{ "fast": "anthropic/claude-haiku-4-5", "standard": "anthropic/claude-sonnet-4-6", }, time.Minute) os.Exit(m.Run()) }