(
self,
prompt: str,
*,
model: str | None = None,
temperature: float = 0.0,
)
| 45 | self._custom_instructions = config.get_prompt_addition() |
| 46 | |
| 47 | def complete( |
| 48 | self, |
| 49 | prompt: str, |
| 50 | *, |
| 51 | model: str | None = None, |
| 52 | temperature: float = 0.0, |
| 53 | ) -> str: |
| 54 | return call_llm(prompt, self._config, model=model, temperature=temperature) |
| 55 | |
| 56 | async def run_module_agent( |
| 57 | self, |
nothing calls this directly
no test coverage detected