fix(mcp server):

This commit is contained in:
Alexander Myasoedov
2025-03-09 21:23:02 +02:00
parent f9dce3f915
commit 56984c7078
3 changed files with 5 additions and 6 deletions
@@ -121,8 +121,7 @@ class CloudRLPromptSelector(PromptSelectionInterface):
current_prompt: str,
reward: float,
passed_guard: bool,
) -> None:
...
) -> None: ...
class QLearningPromptSelector(PromptSelectionInterface):
@@ -216,7 +215,7 @@ class Module:
self.run_id = U.uuid4().hex
self.batch_size = self.opts.get("batch_size", 500)
self.rl_model = CloudRLPromptSelector(
prompt_groups, "https://edge.metaheuristic.co", run_id=self.run_id
prompt_groups, "https://mcp.metaheuristic.co", run_id=self.run_id
)
async def apply(self):