lib_mlx_start_server method

Pointer<Char> lib_mlx_start_server(
  1. int handle,
  2. Pointer<Char> config_json
)

Starts the localhost OpenAI-compatible server for a loaded model handle.

Implementation

ffi.Pointer<ffi.Char> lib_mlx_start_server(
  int handle,
  ffi.Pointer<ffi.Char> config_json,
) {
  return _lib_mlx_start_server(handle, config_json);
}