MCPcopy Create free account
hub / github.com/FastMAS/KVCOMM / __init__

Method __init__

KVCOMM/agents/final_decision.py:612–615  ·  view source on GitHub ↗

Used for Directed IO

(self, id: str | None =None,  domain: str = "", llm_name: str = "",)

Source from the content-addressed store, hash-verified

610@AgentRegistry.register('FinalDirect')
611class FinalDirect(Node):
612 def __init__(self, id: str | None =None, domain: str = "", llm_name: str = "",):
613 """ Used for Directed IO """
614 super().__init__(id, "FinalDirect")
615 self.prompt_set = PromptSetRegistry.get(domain)
616
617 def _process_inputs(self, raw_inputs:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)->List[Any]:
618 """ To be overriden by the descendant class """

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
getMethod · 0.45

Tested by

no test coverage detected