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 2993936 commit d0aedfcCopy full SHA for d0aedfc
llama_cpp/llama_cpp.py
@@ -1059,7 +1059,7 @@ def llama_kv_cache_view_init(
1059
1060
# // Free a KV cache view. (use only for debugging purposes)
1061
# LLAMA_API void llama_kv_cache_view_free(struct llama_kv_cache_view * view);
1062
-def llama_kv_cache_view_free(view: llama_kv_cache_view_p):
+def llama_kv_cache_view_free(view: "ctypes._Pointer[llama_kv_cache_view]"): # type: ignore
1063
"""Free a KV cache view. (use only for debugging purposes)"""
1064
return _lib.llama_kv_cache_view_free(view)
1065
0 commit comments