(self, prompt: str)
| 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: |