We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c087999 commit 1fd2a73Copy full SHA for 1fd2a73
src/mcp_as_a_judge/server.py
@@ -9,7 +9,6 @@
9
import contextlib
10
import json
11
12
-from authlib.common.encoding import json_dumps
13
from mcp.server.fastmcp import Context, FastMCP
14
from pydantic import ValidationError
15
@@ -94,7 +93,7 @@ async def build_workflow(
94
93
current_prompt = f"task_description: {task_description}, context: {context}"
95
conversation_history = (
96
await conversation_service.load_filtered_context_for_enrichment(
97
- session_id, json_dumps(current_prompt), ctx
+ session_id, json.dumps(current_prompt), ctx
98
)
99
100
history_json_array = (
0 commit comments