(self, prompt: str, stop: Optional[List[str]] = None)
| 20 | super().__init__(model_path=model_path, llm=llm, **kwargs) |
| 21 | |
| 22 | def _call(self, prompt: str, stop: Optional[List[str]] = None) -> str: |
| 23 | response = self.llm(prompt, stop=stop or []) |
| 24 | return response["choices"][0]["text"] |
| 25 | |
| 26 | @property |
| 27 | def _identifying_params(self) -> Mapping[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected