← カタログ

gemma-4-e2b-it production first-party

text-generation · 2.41 GB · Gemma Terms of Use

モデルカード

提供元
manashiki
タスク
text-generation
ライセンス
Gemma Terms of Use
バージョン
1.0
フォーマット
litertlm
プラットフォーム
ios
SHA-256
181938105e0eefd105961417e8da75903eacda102c4fce9ce90f50b97139a63c

ライセンス条項

本モデルは Gemma Terms of Use に基づき配布されます。 利用は提供元の禁止用途ポリシーによる制限を受けます。

Gemma is provided under and subject to the Gemma Terms of Use found at ai.google.dev/gemma/terms

This artifact is a Model Derivative of google/gemma-4-e2b-it, converted to the LiteRT-LM (.litertlm) format with int4 quantization by manashiki. The distributed files are modified from Google's original release.

本モデルの再配布は Gemma Terms of Use に服します。ライセンス条項・上記 NOTICE・ 使用制限をエンドユーザーへ伝搬してください。詳細は 利用規約を参照。

組み込み

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("gemma-4-e2b-it") { 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("gemma-4-e2b-it");
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("gemma-4-e2b-it")
println(model.localPath)

mk_test_* API キーは manashiki keys create --env test で取得できます。 5 分で試せる手順ははじめにをご覧ください。