Skip to content

Commit 1fd2a73

Browse files
author
dori
committed
feat: try to fix build
1 parent c087999 commit 1fd2a73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mcp_as_a_judge/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import contextlib
1010
import json
1111

12-
from authlib.common.encoding import json_dumps
1312
from mcp.server.fastmcp import Context, FastMCP
1413
from pydantic import ValidationError
1514

@@ -94,7 +93,7 @@ async def build_workflow(
9493
current_prompt = f"task_description: {task_description}, context: {context}"
9594
conversation_history = (
9695
await conversation_service.load_filtered_context_for_enrichment(
97-
session_id, json_dumps(current_prompt), ctx
96+
session_id, json.dumps(current_prompt), ctx
9897
)
9998
)
10099
history_json_array = (

0 commit comments

Comments
 (0)