We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b53ed commit 78601ecCopy full SHA for 78601ec
llama-cpp-2/src/context.rs
@@ -189,11 +189,6 @@ impl<'model> LlamaContext<'model> {
189
let timings = unsafe { llama_cpp_sys_2::llama_get_timings(self.context.as_ptr()) };
190
LlamaTimings { timings }
191
}
192
-
193
- /// Returns a reference to the raw [llama_cpp_sys_2::llama_context] pointer.
194
- pub fn raw_ctx(&self) -> &NonNull<llama_cpp_sys_2::llama_context> {
195
- &self.context
196
- }
197
198
199
impl Drop for LlamaContext<'_> {
0 commit comments