ailiaLLMCreate method

int ailiaLLMCreate(
  1. Pointer<Pointer<AILIALLM>> llm
)

~japanese @brief LLMオブジェクトを作成します。 @param llm LLMオブジェクトポインタへのポインタ @return 成功した場合は \ref AILIA_LLM_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details LLMオブジェクトを作成します。

~english @brief Creates a LLM instance. @param llm A pointer to the LLM instance pointer @return If this function is successful, it returns \ref AILIA_LLM_STATUS_SUCCESS , or an error code otherwise. @details Creates a LLM instance.

Implementation

int ailiaLLMCreate(
  ffi.Pointer<ffi.Pointer<AILIALLM>> llm,
) {
  return _ailiaLLMCreate(
    llm,
  );
}