MCPcopy Create free account
hub / github.com/AutoPackAI/autopack / call_llm

Method call_llm

autopack/pack.py:115–118  ·  view source on GitHub ↗
(self, prompt: str)

Source from the content-addressed store, hash-verified

113 return run_args_from_args_schema(self.args_schema)
114
115 def call_llm(self, prompt: str) -> str:
116 if self.llm is None:
117 return "No LLM available, cannot proceed"
118 return call_llm(prompt, self.llm)
119
120 async def acall_llm(self, prompt: str) -> str:
121 if self.allm is None:

Callers 2

acall_llmMethod · 0.95
_runMethod · 0.80

Calls 1

call_llmFunction · 0.90

Tested by

no test coverage detected