Skip to content

Commit a5927f4

Browse files
author
dori
committed
feat: cleanup
1 parent 9ad9634 commit a5927f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/mcp_as_a_judge/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async def build_workflow(
141141
log_error(e, "build_workflow")
142142
# Return a default workflow guidance in case of error
143143
return WorkflowGuidance(
144-
next_tool="raise_missing_requirements",
144+
next_tool="elicit_missing_requirements",
145145
reasoning="An error occurred during workflow generation. Please provide more details.",
146146
preparation_needed=[
147147
"Review the error and provide more specific requirements"

test_real_scenario.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ async def test_real_scenario():
2323
identified_gaps=[
2424
"Required fields for profile updates",
2525
"Validation rules for each field",
26-
"Authentication requirements",
26+
"Authentication requirements"
2727
],
2828
specific_questions=[
2929
"What fields should be updatable?",
3030
"Should we validate email format?",
31-
"Is admin approval required?",
31+
"Is admin approval required?"
3232
],
33-
ctx=mock_ctx,
33+
ctx=mock_ctx
3434
)
3535

3636
print(f"Result type: {type(result)}")

0 commit comments

Comments
 (0)