MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / _reply

Method _reply

src/server/agent_server.py:476–486  ·  view source on GitHub ↗
(self, request_id: object, response: dict)

Source from the content-addressed store, hash-verified

474 self._reply(request_id, {"ok": True})
475
476 def _reply(self, request_id: object, response: dict) -> None:
477 if not isinstance(request_id, str):
478 return
479 self._emit({
480 "type": "control_response",
481 "response": {
482 "subtype": "success",
483 "request_id": request_id,
484 "response": response,
485 },
486 })
487
488 def _available_models(self) -> list[str]:
489 """Provider's selectable models (for the /model picker). Best-effort."""

Callers 15

_ackMethod · 0.95
_do_set_providerMethod · 0.95
_do_set_mcp_enabledMethod · 0.95
_do_set_thinkingMethod · 0.95
_do_set_languageMethod · 0.95
_do_planMethod · 0.95
_do_insightsMethod · 0.95
_workMethod · 0.95
_do_bgtaskMethod · 0.95
_do_wikiMethod · 0.95
_do_knowledgeMethod · 0.95

Calls 1

_emitMethod · 0.95

Tested by

no test coverage detected