(self, PLLM_temperature=0.4, ELLM_temperature=0)
| 7 | |
| 8 | class 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) |
nothing calls this directly
no test coverage detected