
2026/09/26 3:33
Ollaya – オープンソース向けの Jev スタイル決定モデルを実現する Ollama
RSS: https://news.ycombinator.com/rss
要約▶
Japanese Translation:
Ollaya は、遅いクラウドサーバーに依存せず、ローカルハードウェアを活用して瞬時の微調整された回答を届けることを目的とした画期的なオープンソースシステムです。従来の AI がトークンごとに応答を生成するのに対し、Ollaya は単一のフォワードパスで回答可能な決定モデルを利用し、応答時間をミリ秒級に大幅に短縮しています。例えば、
decider:2b モデルはベンチマークに依存しますが約 178〜190ms でリクエストを処理し、NVIDIA RTX 4090 GPU 上では laya などの専用モデルが 5 つの質問タスクを約 10ms で処理します。この高速化は、Convai Innovations および Qwen チームといった開発者による独自のアーキテクチャ(8,000〜8,192 トokens のコンテキストに対応する安全性ガーディアンとクラシファイアを含む)によって達成されています。システムはデータプライバシーを確保するため、機密情報をユーザーデバイスのローカル上で分析し、その環境外への流出を防ぎます。TypeSafe 統合(/v1/systemone および /v1/models エンドポイントをホスト)に対応しており、デスクトップアプリケーション、CLI ツール、および Docker イメージとしてさまざまなオペレーティングシステム上、CPU または NVIDIA GPU を使用してシームレスに動作します。Apache-2.0 ライセンス下にあるこの汎用スイートは 100 以上の言語をサポートし、厳格なセキュリティプロトコルを維持しながら超低遅延の AI インタラクションにおける新たな産業標準を確立しています。利用可能なモデルには、最も高速な laya、最も正確な decider、および von および qwen3guard のような専用クラシファイアが含まれます。
Text to translate:
Ollaya is a groundbreaking open-source system designed to deliver instant, calibrated answers by leveraging local hardware instead of relying on slow cloud servers. Unlike traditional AI that generates responses token-by-token, Ollaya utilizes decision models capable of answering in a single forward pass, significantly reducing response times to the millisecond range. For instance, its
decider:2b model processes requests in approximately 178–190 ms (benchmark dependent), while specialized models like laya handle five-question tasks in roughly 10 ms on an NVIDIA RTX 4090 GPU. This speed is achieved through unique architectures from creators like Convai Innovations and the Qwen team, which include safety guards and classifiers supporting up to 8,000–8,192 tokens of context. The system ensures data privacy by analyzing sensitive information locally on the user's device, preventing it from leaving their environment. Compatible with TypeSafe integration (serving /v1/systemone and /v1/models), Ollaya runs seamlessly across desktop applications, CLI tools, and Docker images on various operating systems using either CPUs or NVIDIA GPUs. Licensed under Apache-2.0, this versatile suite supports over 100 languages, establishing a new industry standard for ultra-low-latency AI interaction while maintaining strict security protocols. Available models include laya (fastest), decider (most accurate), and specialized classifiers like von and qwen3guard.本文
Ollaya: 完全非公開・オープンソースの高速意思決定モデル
概要
Ollaya は、ご自身のハードウェア上で動作する完全非公開かつオープンソースの意思決定モデルです。任意のテキストまたは JSON データに対して照会し、ミリ秒単位の精度で回答を取得できます。
超高速なパフォーマンス
意味決定モデルはトークンを逐次生成する方式ではなく、1 つのフォワードパス(推論処理)で回答を生成します。
実際の出力結果(NVIDIA RTX 4090)
- モデル:
decider:2b - 環境: NVIDIA RTX 4090 グラフィックボード
- レイテンシ: 回答までわずか 178 ミリ秒
- 特徴: 非常に高速です。
パフォーマンス比較(中央値レイテンシ)
※値が小さいほど有利です。
| モデル | メトリック (レイテンシ) | 備考 |
|---|---|---|
| laya | | 多言語対応・最速 |
| laya:en | | 英語限定 |
| gliclass | | |
| nli | | |
| decider:0.8b | | 高精度 |
| decider:2b | | 高精度(Ollaya 上で動作) |
| TypeSafe hosted API | | 外部 API |
注釈について
- Ollaya: NVIDIA RTX 4090 上で HTTP API を介した 5 問セットの問い合わせ処理における中央値です(laya は fp16、他は fp32)。
- Jev: サードパーティベンチマーク(AbdelStark/jev-benchmarks, nibzard/decision-model-benchmark)の結果。ネットワーク遅延を含みます。絶対値ではなく「桁の比較」としてご覧ください。
タイプセーフ(TypeSafe)との互換性
Ollaya はタイプセーフのリクエストおよびレスポンス構造と完全に互換です。
互換性の詳細
- エンドポイント:
および/v1/systemone
を提供します。/v1/models - SDK: 公式の TypeSafe Python SDK(バージョン 0.7.1)を使用可能です。ローカルサーバーに対して設定変更を加えることなく動作します。
リクエスト例(TypeSafe SDK / cURL)
Ollaya に対してタイプセーフ SDK を設定し、
/v1/systemone エンドポイントに直接アクセスします。
# 環境変数の設定 (値は任意) export TYPESAFE_BASE_URL=http://localhost:11435 export TYPESAFE_API_KEY=local export TYPESAFE_DEFAULT_MODEL=laya # 直接呼び出し (cURL 例) curl http://localhost:11435/v1/systemone -d '{ "model": "laya", "state": "Can I get an invoice for last month?", "questions": { "intent": { "type": "choice", "instructions": "What does the customer want?", "criteria": { "invoice": "Needs an invoice or receipt", "refund": "Wants money back", "other": "Anything else" } } } }'
レスポンズ例(JSON)
{ "model": "laya:en", "answers": { "intent": { "type": "choice", "choice": "invoice", "confidence": 0.9547, "probabilities": { "invoice": 0.9698, "refund": 0.0172, "other": 0.013 } } }, "usage": { "input_tokens": 43, "output_tokens": 0 } }
オープンモデルの選択肢
オープンな重み(パラメータ)が用意されており、必要とする機能に合わせて選択できます。
- laya: Convai Innovations 提供のオープン意思決定モデル。英語に加え100 語以上に対応。最速 (
)。322M · 421M パラメータ - decider: Mapika が Qwen3.5 ベースで開発したデコーダー型モデル。最も高精度。
。0.75B · 1.9B パラメータ - nli: Moritz Laurer によるゼロショット分類器。タイピングされた意思決定において最も精度の高いエンコーダーモデル(
)。396M · 435M パラメータ - gliclass: Knowledgator による指示追従型分類器。選択肢の増加に伴うコスト増がわずか(
)。439M パラメータ - qwen3guard: Qwen チームによる安全性ガード機能。有害テキストのスクリーニング対応(
)。0.6B パラメータ - kev: Jared Palmer によるモデル。Qwen3.5 ベースに LoRA を追加。独自のスパンスコアリング対応(
)。0.76B パラメータ - von: Victor Hugo Panisa が作成したモデル。8k トークンのコンテキストをサポートし、入力条件付きの照合機能を備える(
)。395M パラメータ
開発中の機能:
を経由する GGUF ベースの大規模言語モデル搭載型意思決定モデルなども準備中です。llama.cpp
データプライバシーと展開
データ管理
- 完全なプライベート環境: デフォルトでプライバシーが守られます。
- 機密データの処理: チケット、メール、ユーザーメッセージなどの高機密データを、本来存在する場所でスコアリング(分類)可能です。
対応プラットフォーム
すべてのモデルは CPU でも動作しますが、NVIDIA GPUを活用することでミリ秒単位の高速化を実現します。
- macOS: 対応
- Windows: 対応
- Linux: 対応
- Docker: サーバー用イメージ提供
インストール要件
- NVIDIA GPU: ドライバー R580 以降が必要です(インストーラーは自動検出)。
- Apple / AMD / Intel GPU: モデルは CPU で動作可能です。
クイックスタート
数分で起動可能。1 つのバイナリとコマンドのみで実行します。
ollaya run laya
- ライセンス: Apache-2.0
- GitHub リポジトリ: 利用可能