fix(test): update model-requirements test for 13 builtin agents
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -265,8 +265,8 @@ describe("AGENT_MODEL_REQUIREMENTS", () => {
|
|||||||
expect(hephaestus.requiresModel).toBeUndefined()
|
expect(hephaestus.requiresModel).toBeUndefined()
|
||||||
})
|
})
|
||||||
|
|
||||||
test("all 12 builtin agents have valid fallbackChain arrays", () => {
|
test("all 13 builtin agents have valid fallbackChain arrays", () => {
|
||||||
// #given - list of 12 agent names
|
// #given - list of 13 agent names
|
||||||
const expectedAgents = [
|
const expectedAgents = [
|
||||||
"sisyphus",
|
"sisyphus",
|
||||||
"hephaestus",
|
"hephaestus",
|
||||||
@@ -280,6 +280,7 @@ describe("AGENT_MODEL_REQUIREMENTS", () => {
|
|||||||
"atlas",
|
"atlas",
|
||||||
"sisyphus-junior",
|
"sisyphus-junior",
|
||||||
"athena",
|
"athena",
|
||||||
|
"athena-junior",
|
||||||
"council-member",
|
"council-member",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -287,7 +288,7 @@ describe("AGENT_MODEL_REQUIREMENTS", () => {
|
|||||||
const definedAgents = Object.keys(AGENT_MODEL_REQUIREMENTS)
|
const definedAgents = Object.keys(AGENT_MODEL_REQUIREMENTS)
|
||||||
|
|
||||||
// #then - all agents present with valid fallbackChain
|
// #then - all agents present with valid fallbackChain
|
||||||
expect(definedAgents).toHaveLength(12)
|
expect(definedAgents).toHaveLength(13)
|
||||||
for (const agent of expectedAgents) {
|
for (const agent of expectedAgents) {
|
||||||
const requirement = AGENT_MODEL_REQUIREMENTS[agent]
|
const requirement = AGENT_MODEL_REQUIREMENTS[agent]
|
||||||
expect(requirement).toBeDefined()
|
expect(requirement).toBeDefined()
|
||||||
|
|||||||
Reference in New Issue
Block a user