moshiko-mlx-q4 production first-party
english-full-duplex-dialogue · 4.40 GB · CC-BY-4.0
Card
- Provider
- kyutai-labs
- Task
- english-full-duplex-dialogue
- License
- CC-BY-4.0
- Version
- 1.0
- Format
- mlx
- Platforms
- ios
- SHA-256
ff41281603a1f74d88a1dfa034e355810080724913dc0024b78a95351162c793
Integrate
Swift
// Package.swift
.package(url: "https://github.com/Nozium/manashiki-models-swift", branch: "main"),
// In your app:
import Manashiki
let client = ManashikiClient(apiKey: ProcessInfo.processInfo.environment["MANASHIKI_API_KEY"] ?? "")
let model = try await client.downloadModel("moshiko-mlx-q4") { progress in
print("\(progress.bytesWritten) / \(progress.totalBytes)")
}
print(model.localURL) TypeScript
// npm i @manashiki/sdk
import { ManashikiClient } from "@manashiki/sdk";
const client = new ManashikiClient({ apiKey: process.env.MANASHIKI_API_KEY! });
const dl = await client.downloadModel("moshiko-mlx-q4");
console.log(dl); Kotlin / Android
// build.gradle.kts
implementation("com.manashiki:manashiki-models:0.1.0")
// Kotlin
val client = ManashikiClient(apiKey = BuildConfig.MANASHIKI_API_KEY)
val model = client.downloadModel("moshiko-mlx-q4")
println(model.localPath)
Get an mk_test_* API key with manashiki keys create --env staging.
See getting started for a 5-minute walkthrough.