llm-jp-moshi-mlx-q4 production first-party
japanese-full-duplex-dialogue · 4.38 GB · Apache-2.0
モデルカード
- 提供元
- llm-jp
- タスク
- japanese-full-duplex-dialogue
- ライセンス
- Apache-2.0
- バージョン
- 1.0
- フォーマット
- mlx
- プラットフォーム
- ios
- SHA-256
a20f5602d53ef0f618bd2b534985be2a936d06c6a6d9d5bad0054133059b4342
組み込み
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("llm-jp-moshi-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("llm-jp-moshi-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("llm-jp-moshi-mlx-q4")
println(model.localPath) mk_test_* API キーは manashiki keys create --env staging で取得できます。
5 分で試せる手順ははじめにをご覧ください。