(self, i: int)
| 346 | return llama_cpp.llama_get_logits(self.ctx) |
| 347 | |
| 348 | def get_logits_ith(self, i: int): |
| 349 | return llama_cpp.llama_get_logits_ith(self.ctx, i) |
| 350 | |
| 351 | def get_embeddings(self): |
| 352 | return llama_cpp.llama_get_embeddings(self.ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected