MCPcopy Create free account
hub / github.com/chenfei-wu/TaskMatrix / __init__

Method __init__

LowCodeLLM/src/lowCodeLLM.py:9–11  ·  view source on GitHub ↗
(self, PLLM_temperature=0.4, ELLM_temperature=0)

Source from the content-addressed store, hash-verified

7
8class lowCodeLLM:
9 def __init__(self, PLLM_temperature=0.4, ELLM_temperature=0):
10 self.PLLM = planningLLM(PLLM_temperature)
11 self.ELLM = executingLLM(ELLM_temperature)
12
13 def get_workflow(self, task_prompt):
14 return self.PLLM.get_workflow(task_prompt)

Callers

nothing calls this directly

Calls 2

planningLLMClass · 0.90
executingLLMClass · 0.90

Tested by

no test coverage detected