llama_new_context_with_model method

Pointer<llama_context> llama_new_context_with_model(
  1. Pointer<llama_model> model,
  2. llama_context_params params
)

Implementation

ffi.Pointer<llama_context> llama_new_context_with_model(
  ffi.Pointer<llama_model> model,
  llama_context_params params,
) {
  return _llama_new_context_with_model(
    model,
    params,
  );
}