whisper-medical-ja-int8 production first-party
medical-stt · 732 MB · Apache-2.0
Card
- Provider
- manashiki
- Task
- medical-stt
- License
- Apache-2.0
- Version
- 1.0
- Format
- coreml-bundle
- Platforms
- ios
- SHA-256
60270e6a31d8068ac98e2aa4287598dfc31a5f0fe82667ffc64ca967563b80f1
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("whisper-medical-ja-int8") { 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("whisper-medical-ja-int8");
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("whisper-medical-ja-int8")
println(model.localPath)
Get an mk_test_* API key with manashiki keys create --env staging.
See getting started for a 5-minute walkthrough.