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

Method __init__

LowCodeLLM/src/planningLLM.py:47–51  ·  view source on GitHub ↗
(self, temperature)

Source from the content-addressed store, hash-verified

45
46class planningLLM:
47 def __init__(self, temperature) -> None:
48 self.prefix = PLANNING_LLM_PREFIX
49 self.suffix = PLANNING_LLM_SUFFIX
50 self.LLM = OpenAIWrapper(temperature)
51 self.messages = [{"role": "system", "content": "You are a helpful assistant."}]
52
53 def get_workflow(self, task_prompt):
54 '''

Callers

nothing calls this directly

Calls 1

OpenAIWrapperClass · 0.90

Tested by

no test coverage detected