///
/// MLXReactNativeAutolinking.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © 2026 Marc Rousavy @ Margelo
///

public final class MLXReactNativeAutolinking {
  public typealias bridge = margelo.nitro.mlxreactnative.bridge.swift

  /**
   * Creates an instance of a Swift class that implements `HybridLLMSpec`,
   * and wraps it in a Swift class that can directly interop with C++ (`HybridLLMSpec_cxx`)
   *
   * This is generated by Nitrogen and will initialize the class specified
   * in the `"autolinking"` property of `nitro.json` (in this case, `HybridLLM`).
   */
  public static func createLLM() -> bridge.std__shared_ptr_HybridLLMSpec_ {
    let hybridObject = HybridLLM()
    return { () -> bridge.std__shared_ptr_HybridLLMSpec_ in
      let __cxxWrapped = hybridObject.getCxxWrapper()
      return __cxxWrapped.getCxxPart()
    }()
  }
  
  /**
   * Creates an instance of a Swift class that implements `HybridModelManagerSpec`,
   * and wraps it in a Swift class that can directly interop with C++ (`HybridModelManagerSpec_cxx`)
   *
   * This is generated by Nitrogen and will initialize the class specified
   * in the `"autolinking"` property of `nitro.json` (in this case, `HybridModelManager`).
   */
  public static func createModelManager() -> bridge.std__shared_ptr_HybridModelManagerSpec_ {
    let hybridObject = HybridModelManager()
    return { () -> bridge.std__shared_ptr_HybridModelManagerSpec_ in
      let __cxxWrapped = hybridObject.getCxxWrapper()
      return __cxxWrapped.getCxxPart()
    }()
  }
  
  /**
   * Creates an instance of a Swift class that implements `HybridTTSSpec`,
   * and wraps it in a Swift class that can directly interop with C++ (`HybridTTSSpec_cxx`)
   *
   * This is generated by Nitrogen and will initialize the class specified
   * in the `"autolinking"` property of `nitro.json` (in this case, `HybridTTS`).
   */
  public static func createTTS() -> bridge.std__shared_ptr_HybridTTSSpec_ {
    let hybridObject = HybridTTS()
    return { () -> bridge.std__shared_ptr_HybridTTSSpec_ in
      let __cxxWrapped = hybridObject.getCxxWrapper()
      return __cxxWrapped.getCxxPart()
    }()
  }
  
  /**
   * Creates an instance of a Swift class that implements `HybridSTTSpec`,
   * and wraps it in a Swift class that can directly interop with C++ (`HybridSTTSpec_cxx`)
   *
   * This is generated by Nitrogen and will initialize the class specified
   * in the `"autolinking"` property of `nitro.json` (in this case, `HybridSTT`).
   */
  public static func createSTT() -> bridge.std__shared_ptr_HybridSTTSpec_ {
    let hybridObject = HybridSTT()
    return { () -> bridge.std__shared_ptr_HybridSTTSpec_ in
      let __cxxWrapped = hybridObject.getCxxWrapper()
      return __cxxWrapped.getCxxPart()
    }()
  }
}
