Baseten、Moonshot AI の Kimi K3 をモデル API で提供開始
本文の状態
日本語全文を表示中
詳細モードで約15分の本文を読めます。
Baseten は Moonshot AI から Kimi K3 の重みを早期アクセス権として提供され、同社の Model APIs でビジョン入力と 100 万トークンのコンテキストウィンドウを備えた API を公開した。
AI深層分析を開く2026年8月4日 10:48
AI深層分析
キーポイント
Baseten による Kimi K3 の API 提供開始
Baseten は Moonshot AI との協力により、Kimi K3 の重みを早期アクセス権として取得し、Model APIs で利用可能にした。
2.8T パラメータ規模の超大規模モデル
Kimi K3 は 2.8T パラメータを有するオープンフロンティアモデルであり、これまでにない大規模なパラメータ数を実現している。
新アーキテクチャ技術の導入
Kimi Delta Attention (KDA)、Attention Residuals (AttnRes)、Stable LatentMoE、および新しいビジョンエンコーダーが採用されている。
大規模コンテキストとマルチモーダル対応
100 万トークンのフルコンテキストウィンドウをサポートし、画像入力も処理可能な能力を有している。
Kimi K3のアーキテクチャ革新
KDAとAttnResを備えたスケーラブルなバックボーン、16個の専門家のみが活性化される極端に疎なExpert構成、および新しいビジョンエンコーダーが採用されている。
重要な引用
Baseten has day-0 support for Kimi K3 on our Model APIs.
Kimi K3 is a new open frontier model. At 2.8T parameters, it is much larger than any previous open model...
New architectural techniques allow Kimi K3 to scale beyond the trillion-parameter threshold of prior frontier open models
Generating our first tokens of Kimi K3 required: Provisioning hardware, Loading weights, Bringing up an inference engine.
編集コメントを表示
編集コメント
2.8T パラメータという規模は、オープンソース分野における技術的ハードルを大幅に引き上げる画期的な出来事である。Baseten が開発初期から協力体制を築き API を提供したことは、大規模モデルの民主化に向けた重要な一歩と言える。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
Baseten は、Model APIs で Kimi K3 の Day-0 サポートを開始しました。早期アクセスのために Kimi K3 の重みを共有してくれた Moonshot AI 様、そして開発プロセス全体で協力してくださった Inferact チームと RadixArk チームに感謝いたします。

Kimi K3 は、本日 Baseten Model APIs で利用可能になりました。ビジョン入力に対応し、最大 100 万トークンのコンテキストウィンドウをフル活用できます。
Kimi K3 は新しいオープンフロンティアモデルです。パラメータ数は 2.8T に達しており、これまでに登場したどのオープンモデルよりもはるかに大規模です。この巨大なサイズは、高性能な推論 API を構築する上で多くの課題をもたらしました。しかし、新たなアーキテクチャ技術により、Kimi K3 は従来のフロンティア系オープンモデルが持っていた 1 トリオンパラメータの壁を超えてスケールすることに成功しています。
- Kimi Delta Attention (KDA) と Attention Residuals (AttnRes) を採用し、Kimi アーキテクチャのスケーラブルなバックボーンを実現しました。
- Stable LatentMoE で構成された極端にスパースなエキスパートを採用。896 個のエキスパートのうち、同時にアクティブになるのはわずか 16 個です。
- 画像入力を処理し、視覚情報を潜在空間へマッピングするための新しいビジョンエンコーダーを搭載しました。
この記事では、ローンチ日に間に合わせるため、Kimi K3 の革新的なモデルアーキテクチャと巨大な重みを大規模に実行するために必要な技術的な取り組みについて解説します。
第一段落:トークンの生成
Moonshot AI チームから Kimi K3 のモデル重み(weights)を早期に入手した後、私たちの最優先課題は、このモデルを実際に動かすことでした。
Kimi K3 から最初のトークンを生成するには、以下の準備が必要でした。
- ハードウェアの用意: Kimi K3 の規模を考慮し、NVIDIA GB300 NVL72 システム上でモデルを実行することを決定しました。
- 重みの読み込み: MXFP4 形式で保存された Kimi K3 の重みは、1.4TB を超えるデータ量になります。
- 推論エンジンのセットアップ: vLLM と SGLang の開発チームと連携し、Kimi K3 向けのプレリリース版推論エンジンを実行しました。
通常、Day-0 API の構築では、パフォーマンス向上や NVIDIA Blackwell アーキテクチャとの互換性確保のために、重みを NVFP4 形式に変換する工程が早期に設けられることが一般的です。しかし、Kimi K3 は MXFP8 アクティベーションを伴うネイティブの MXFP4 重みを使用しており、これらをそのまま利用することができました。
重みを入手した後は、vLLM については Inferact チームと、SGLang については RadixArk チームと緊密に連携しました。Baseten の推論スタック上で Kimi K3 を動作させる前に、主要なオープンソース推論エンジンとの間でベンチマークの確立が必要でした。
推論エンジンへのモデルサポート追加は決して簡単な作業ではありません。コアとなるモデルコードの実装、KDA といった新アーキテクチャ向けの最適化カーネル開発、そしてトークナイゼーションからツール呼び出しに至るまでのフロントエンド互換性の構築など、多岐にわたる工程を要します。
NVIDIA Blackwell GPU 向けの vLLM の早期アクセス版イメージにより、基本機能の完成度を確保し、初期評価を通過するとともに、パフォーマンス目標の基準を設定することができました。KDA、AttnRes、Stable LatentMoE といった Kimi K3 のアーキテクチャ特徴への対応策は、私たちが構築を進めるための堅牢な基盤となりました。また、vLLM インフラエンジンに対する Kimi K3 向けの広範な検証を実施し、その成果をオープンソースのエンジンへ還元する貢献も行いました。
SGLang の早期アクセス版イメージは、Kimi K3 を高速かつ信頼性高くサーブするための参考モデルとなりました。SGLang はビジョンランゲージモデルに対する強力なサポート実績があり、Kimi K3 も例外ではありませんでした。RadixArk チームと連携し、フロントエンドの互換性とカーネル最適化に注力しました。また、エンジニアリングチームがツール呼び出し処理や構造化出力に関するフロントエンドのバグ修正を行い、リリース準備を整えることに貢献しました。
プレビュー期間中、私たちと共に歩んでくれた Inferact チームと RadixArk チームに感謝します。この取り組みは Kimi K3 API の不可欠な基盤を提供しただけでなく、オープンソースコミュニティへの還元という機会にもなりました。
Milestone 2: Validate the inference engine
Kimi K3 はこれまでで最も賢いオープンモデルです。その知能を実際の推論において確実に発揮させることが何より重要です。
✕

Kimi K3 のベンチマーク結果は、正確なツール呼び出しと高品質なモデル出力に依存するエージェントタスクにおいて、強力なパフォーマンスを示しています。
品質検証には、厳密さのレベルが異なります。開発プロセス中における有用なチェックポイントとして、既知のプロンプトでモデルを呼び出すといった単純な Sanity Check や、gsm8k や BFCL などの軽量ベンチマークを実行して結果が誤差範囲内にあるかを確認する手法があります。これらはシステムが暴走していないかを確認するのに役立ちます。しかし、公開 API をリリースするには、より厳格なベンチマークが必要です。
Moonshot AI チームは、推論プロバイダーがモデル重みの正確かつ高忠実な提供を確保するための Kimi Vendor Verifier を運用しています。Kimi Vendor Verifier に合格することは、API 開発における重要な初期マイルストーンであり、開発プロセス全体を通じて非常に有用なツールでした。
モデルの提供(サービング)には失敗する機会が数多く存在します。一般的に「量子化が品質問題の根源」という見方が広まっていますが、実際にはそうではありません。特にツール呼び出しやその他の構造化されたモデル動作における品質問題は、推論サーバーのフロントエンドに起因することがほとんどです。
✕

推論エンジン(inference engine)の前方に位置し、入出力を処理するフロントエンド
フロントエンドは、推論ループの手前に配置され、CPU 上で動作する決定論的なコードです。主な役割は入力を受け取り、結果を返すことです。具体的には以下のタスクを担当します。
- API の運用と検証
- プロンプトのトークン化と出力の逆変換(detokenize)
- チャットテンプレートのレンダリング
- 推論プロセスやツール呼び出しの解析
- ChatCompletions、メッセージ形式、あるいはその他の標準フォーマットへの出力整形
これらのタスクはモデルによって微妙に異なり、日次ゼロ(day-0)対応を急ぐあまりバグを導入したり、パフォーマンスが低下したりするケースが多々あります。Kimi Vendor Verifier などの堅牢なチェックツールを用いて、ツール呼び出しなど一般的な失敗モードにおける性能を検証することで、推論ループと API サーフェスの両面で高い忠実度でモデルを提供できるようにしています。
API の開発を進める過程では、各マイルストーンで Kimi Vendor Verifier を活用し、パフォーマンス最適化が精度を低下させるようなバグを導入していないことを確認しました。
第 3 のマイルストーン:最適な構成を見つける
推論エンジンには、モデルやハードウェア、トラフィックの形状、レイテンシとスループットのトレードオフに合わせてパフォーマンスを調整するための多様な設定オプションが用意されています。これらのオプション同士が複雑に絡み合っているため、最適な組み合わせを見つけるのは容易ではありません。
適切な構成を見出すために、Tensor Parallelism(TP)や Expert Parallelism(EP)の設定、Attention Data Parallelism(ADP)のオンオフ切り替え、バッチサイズ、スペキュレーティブ・デコーダーのドラフト長、線形層キャッシュの間隔、ルーティングパラメータ、そして推論エンジン自体の設定など、多角的に設定値をスキャンして検証を行います。

Tensor Parallelism と Expert Parallelism は、大規模モデルを複数の GPU に分散させる技術です。
Kimi K3 を推論するには、膨大なモデル重みを VRAM に収めるため、NVIDIA GB300 GPU を 8 基必要とします。しかし、多くの NVIDIA GPU が 8 基単位でノード構成されるのとは異なり、GB300 は 4 基単位でノード化されています。一見すると、これが並列処理戦略の選択肢を制限しているように見えるかもしれません。通常、ノード間では通信経路が遅いため、高価なオール・リデュース演算がボトルネックとなり、Tensor Parallelism をノード跨いで実行することは不可能とされてきました。
しかし、GB300 の NVL72 システムは、ノード間の接続速度が十分に高速であるため、ノードをまたいでも Tensor Parallelism と Expert Parallelism を活用した推論が可能となっています。
これらの設定は、推論エンジンの選択に依存する下流の決定です。エンジニアたちは並行して vLLM、SGLang、および自社開発の推論エンジンに対する設定作業を行い、知見を共有しながら自社エンジンへフィードバックするとともに、オープンソースのエンジンにもプルリクエストを送ることで貢献しました。
マイルストーン 4: パフォーマンスの最適化
モデルが最適化された構成で稼働し始めたら、レイテンシやスループット、あるいはその両方を大幅に改善できる推論エンジニアリングの手法は数多く存在します。モデル API の場合、私たちは一般的に以下の点に着目します。
- スペキュレーション(予測): 小さなドラフトモデルを使用して複数のトークンを事前に予測し、フォワードパスの一部としてそれらを検証する手法です。このロスレスな最適化により、デコード時のユーザーあたりの TPS が向上します。
- ディスアグリゲーション(分離): プレフィルとデコードを別々のワーカーに割り当てます。これによりリソースの競合を防ぎ、よりターゲットを絞った設定が可能になります。また、トラフィックに合わせてプレフィルとデコードの計算比率を調整できるようになります。
- キャッシング: メモリを確保して KV キャッシュや KDA 状態をリクエスト間で保存します。これにより、入力シーケンスで共通するプレフィックスを持つ後続のリクエストが、プレフィルの一部または全部をスキップできるようになり、TTFT とシステム全体のスループットが改善されます。
本稿で扱う作業の前提として、前段階のマイルストーンからモデルが稼働している状態である必要があります。例えば、DSpark や DFlash、EAGLE-3 といった手法を用いて予測モデルを訓練する場合、実世界のユースケースに似たプロンプトセットを使ってターゲットモデル(Kimi K3)から隠れ状態を生成する必要があります。そのためには、モデルを実際に稼働させて推論を行う、十分なスループットを持つインスタンスが不可欠です。
パフォーマンス最適化の新たな取り組みとして、トークナイザーの改良があります。長年、推論エンジニアたちはトークン化にかかる時間を無視できるほど微小なコストだと考えてきました。しかし、Kimi K3 のように入力シーケンスが長く KV キャッシュの再利用率が高いモデルでは状況が変わります。入力シーケンスがキャッシュヒットするか否かに関わらずトークン化は必須となるため、これがプリフィル時間の重要な要素となり得るのです。
そこで私たちは、長い入力シーケンスにおいて tiktoken よりも最大 18 倍高速な独自トークナイザーを開発し、Kimi K3 API のリリースと同時に展開しました。

Basetenkenizer is up to 18x faster than Tiktoken for long input sequences.
パフォーマンス面でも、まだ取り組むべき課題は残っています。モデルをリリースするたびに、その後の数週間にわたってレイテンシとスループットの最適化に投資し続けています。Kimi K3 は前例のない規模のモデルであるため、推論エンジニアリングの主要な手法すべてや、推論スタックの各層において、さらなるパフォーマンス向上のための広範な余地があります。
マイルストーン 5:大規模展開
業界全体で Kimi K3 に対する期待は非常に高まっており、API のローンチ時にはこれに匹敵するほどの需要が殺到すると予想されます。そのため、ユーザーごとのレイテンシだけでなく、システム全体のスループットを最優先事項として取り組んでいます。
GB300 NVL72 システムでは 1 ノードが 4 枚の GPU で構成され、全体で 18 ノードとなります。Kimi K3 は 2 ノード(8 GPU)を占有するため、各 NVL72 ラックにはモデルの 9 レプリカをホスト可能です。複数の GB300 NVL72 ラックからなるクラスターを構築し、さらに複数のリージョンやクラウドプロバイダーにまたげて展開することで、より多くのキャパシティを活用してサービスを提供しています。
✕

各 NVL72 システムでは、Kimi K3 の 9 レプリカを同時に実行できます。
特定のレプリカの処理能力を決定する最も重要な要因は、プレフィックスキャッシュのヒット率です。大規模な展開を行う以上、この課題を解決するために KV 認知型ルーティングがインフラ上の主要な課題となります。
ユーザーが以前に見た入力トークンのシーケンスを送信した場合、事前計算(prefill)をスキップするために保存された KV キャッシュにアクセスできるレプリカへそのリクエストをルーティングする必要があります。
NVIDIA Dynamo ツールキットで構築した KV 認知型ルーティングシステムにより、繰り返しクエリに対してキャッシュが温かいレプリカへトラフィックを正しく配分できます。コーディングや多段階のエージェント処理が Kimi K3 の一般的なユースケースであるため、このキャッシュ認知型のルーティングシステムは、ユーザーのコスト削減とシステム全体の高いスループット維持に不可欠です。
Baseten で Kimi K3 を構築する
Model APIs 経由で day-0 アクセスを提供できることを嬉しく思います。今後もパフォーマンスと信頼性の最高基準を達成できるよう、このモデルの実装を継続して最適化していく予定です。
Moonshot AI チームが発表した「Kimi K3」では、カーネル最適化や視覚フィードバックを伴うゲーム開発といったコーディングタスク、研究課題、さらに動画編集や知識処理などのエージェントタスクなど、多岐にわたるテスト結果が公開されています。
7 月 28 日(火)の太平洋標準時午前 11 時より、Baseten のフォワード・デプロイメントエンジニアリング統括責任者であるジョーイ・ツウィッカー氏と、『Inference Engineering』の著者フィリップ・キーリー氏を招き、「Kimi K3」の実用例に関する経営層向けブリーフィングを開催します。
「Kimi K3」は本日、Baseten のモデル API で利用可能になりました。オープンウェイト型知能の新たなフロンティアへようこそ。
原文を表示
Baseten has day-0 support for Kimi K3 on our Model APIs. We want to thank Moonshot AI for sharing the Kimi K3 weights with us for early access, as well as the Inferact and RadixArk teams for their collaboration throughout the development process.
✕

Kimi K3 is available today on Baseten Model APIs with vision input and full 1M-token context window.
Kimi K3 is a new open frontier model. At 2.8T parameters, it is much larger than any previous open model, introducing a number of challenges to building a performant inference API. New architectural techniques allow Kimi K3 to scale beyond the trillion-parameter threshold of prior frontier open models:
- Kimi Delta Attention (KDA) and Attention Residuals (AttnRes) as a scalable backbone for the Kimi Architecture.
- Extremely sparse experts, with just 16 of 896 experts active at a time, organized using Stable LatentMoE.
- A new vision encoder for processing image inputs and mapping visual information into latent space.
This article describes the technical work required to run Kimi K3’s novel model architecture and huge weights at scale in time for launch day.
Milestone 1: Generate a token
After receiving early access to the Kimi K3 weights from the Moonshot AI team, our first priority was to simply get the model up and running.
Generating our first tokens of Kimi K3 required:
- Provisioning hardware: Given the size of Kimi K3, we decided to run the model on NVIDIA GB300 NVL72 systems.
- Loading weights: In MXFP4, Kimi K3 weights are over 1.4TB of data.
- Bringing up an inference engine: We worked with the teams behind vLLM and SGLang to run pre-release builds of the inference engines for Kimi K3.
Often, when building day-0 APIs, an early step is porting the weights to NVFP4 to improve performance and compatibility with NVIDIA Blackwell and our inference stack. However, Kimi K3 uses native MXFP4 weights with MXFP8 activations, and we were able to use these weights directly.
With the weights in hand, we worked closely with Inferact on vLLM and RadixArk on SGLang. Before running Kimi K3 on the Baseten Inference Stack, we needed to establish a baseline in collaboration with the leading open-source inference engines.
Adding support for a model to an inference engine is non-trivial. It requires implementing core modeling code, optimized kernels for new architectures like KDA, and building frontend compatibility for Kimi K3 across everything from tokenization to tool calling.
vLLM’s early access image for NVIDIA Blackwell GPUs helped us establish basic feature completeness, pass initial evals, and set a baseline performance target. This work around accommodating Kimi K3 architectural features like KDA, AttnRes, and Stable LatentMoE formed a solid foundation for us to build on. We also did extensive validation of the vLLM inference engine for Kimi K3, and made contributions back to the open-source engine based on our work.
SGLang’s early access image provided a reference for fast, reliable serving of Kimi K3. SGLang has a history of strong support for vision language models, and Kimi K3 is no exception. With the RadixArk team, we focused on frontend compatibility and kernel optimization, and our engineering team contributed fixes for frontend bugs around tool call handling and structured outputs to support release readiness.
Thank you to the Inferact and RadixArk teams for building side by side with us throughout the preview window. This work provided both an essential foundation for our Kimi K3 API and an opportunity to contribute back to the open-source community.
Milestone 2: Validate the inference engine
Kimi K3 is the smartest open model ever. It’s essential to actually deliver on that intelligence during inference.
✕

Kimi K3 benchmarks show strong performance on agentic tasks, which depend on accurate tool calls and high-quality model outputs.
Quality validation can occur at different levels of rigor. Simple sanity checks, like calling the model with a known prompt or running a light benchmark like gsm8k or BFCL and checking if results are within the margin of error, are useful checkpoints during the development process to make sure that things aren’t going off the rails. But releasing a public API requires more rigorous benchmarking.
The Moonshot AI team operates Kimi Vendor Verifier, which helps inference providers ensure accurate, high-fidelity serving of model weights. Passing Kimi Vendor Verifier was an essential early milestone in our API development, and it was an extremely helpful tool throughout the development process.
There are lots of opportunities to mess up in serving models. While the popular narrative is that quantization is the root of all quality issues, in practice that is not true. Most quality issues, especially with tool calling and other structured model behaviors, come from the inference server frontend.
✕

The frontend sits in front of the inference engine and processes the inputs and outputs
The frontend is deterministic code that runs on the CPU in front of the inference loop. It is responsible for accepting inputs and returning outputs. The frontend must:
- Operate and validate the API
- Tokenize prompts and detokenize outputs
- Render the chat template
- Parse reasoning and tool calls
- Format the output to ChatCompletions, messages, or another standard
These tasks are subtly different from model to model, and it is all too common to introduce bugs and performance degradation when building quickly for day-0 support. Robust checks like Kimi Vendor Verifier evaluate performance across common failure modes, like tool calling, to ensure the model is served with a high degree of fidelity across both the inference loop and the API surface.
As we continued to develop the API, we used Kimi Vendor Verifier at subsequent milestones to ensure that performance optimizations had not introduced bugs that would degrade accuracy.
Milestone 3: Find the right configuration
Inference engines offer a wide range of configuration options to tune performance to different models, hardware, traffic shapes, and latency/throughput tradeoffs. These options, and the interactions between them, are complex.
To discover the right configuration, we do a sweep over various options like Tensor Parallelism (TP) and Expert Parallelism (EP) settings, Attention Data Parallelism (ADP) toggling, batch sizing, speculative decoder draft lengths, linear layer caching intervals, routing parameters, and inference engine settings.
✕

Tensor Parallelism and Expert Parallelism split large models across multiple GPUs.
Running Kimi K3 requires eight NVIDIA GB300 GPUs to fit the enormous model weights into VRAM. However, unlike many other NVIDIA GPUs that come in nodes of eight, GB300s come in nodes of four. While this might initially appear to limit possible parallelism strategies – Tensor Parallelism is traditionally not possible across nodes as slow interconnects make expensive all-reduce operations a bottleneck for inference – the GB300 NVL72 system has a sufficiently fast interconnect between nodes that we can run inference with Tensor Parallelism and Expert Parallelism across nodes.
These configuration decisions are downstream of inference engine choice. Engineers worked in parallel to configure vLLM, SGLang, and our own in-house engine, sharing findings and applying learnings back to our in-house inference engine while also contributing PRs back to the open-source engines.
Milestone 4: Optimize performance
Once a model is up and running on an optimized configuration, there are a large number of inference engineering techniques that can materially improve latency, throughput, or a combination thereof. For model APIs, we generally look at:
- Speculation: Using a small draft model to predict multiple tokens, then validating them as part of the forward pass. This lossless optimization improves per-user TPS on decode.
- Disaggregation: Move prefill and decode to separate workers. This prevents competition for resources, allows more targeted configuration, and makes the ratio of prefill to decode compute adjustable to match traffic.
- Caching: Allocating memory to save KV cache and KDA states between requests, allowing subsequent requests with shared prefixes in input sequences to skip all or part of prefill. This improves TTFT and overall system throughput.
Having the model up and running from previous milestones is a dependency for this work. For example, training a speculator model using a method like DSpark, DFlash, or EAGLE-3 requires generating hidden states from the target model (Kimi K3) using a set of prompts that resemble expected real-world usage. To do this, you need a reasonably high-throughput instance of the model live and running inference.
One novel performance optimization was in the tokenizer. For years, inference engineers have been able to disregard tokenization time as negligible. For a model like Kimi K3 with long input sequences and high KV cache re-use rates, this actually changes, and tokenization can become material to prefill time, as tokenization must occur whether or not the input sequence is a cache hit.
We built a custom tokenizer that is up to 18x faster than tiktoken for long input sequences and rolled it out alongside our Kimi K3 API.
✕

Basetenkenizer is up to 18x faster than Tiktoken for long input sequences.
There is still more work to be done on performance. With every model we launch, we continue to invest in latency and throughput optimizations in the weeks following release. With the unprecedented size of Kimi K3, there is a huge surface area for further performance improvement across every main inference engineering technique and every layer of the inference stack.
Milestone 5: Deploy at scale
There is massive industry-wide excitement for Kimi K3. This will be matched by a huge wave of demand for the API at launch. Accordingly, system-wide throughput, not just per-user latency, is a top priority.
On a GB300 NVL72 system, a node is 4 individual GPUs, meaning there are 18 nodes. As an instance, Kimi K3 takes up 2 nodes (8 GPUs); each NVL72 rack can host 9 replicas of the model. Each cluster has multiple GB300 NVL72 racks, and we serve the model across multiple regions and cloud providers to access more capacity.
✕

Each NVL72 system can run nine replicas of Kimi K3.
The most consequential factor for a given replica’s throughput is prefix cache hit rate. Given the scale of the deployment, this makes KV-aware routing the primary challenge to solve on infrastructure. When a user sends a sequence of input tokens that we’ve seen before, we need to route that request to a replica that can access the saved KV cache to skip prefill.
Our KV-aware routing system, built with the NVIDIA Dynamo toolkit, ensures that we are able to route traffic to replicas with warm caches for repeat queries. As coding and multi-turn agents are common use cases for Kimi K3, this cache-aware routing system is critical for saving users money and maintaining high total system throughput.
Build with Kimi K3 on Baseten
We’re excited to offer day-0 access via Model APIs, and look forward to continuing to optimize our implementation of this model to achieve the highest standards in performance and reliability.
The Moonshot AI team’s Kimi K3 announcement includes a number of interesting tests for the model, including coding tasks like kernel optimization and vision-in-the-loop game development, research tasks, and agentic tasks like video editing and knowledge work. On Tuesday, July 28 at 11AM Pacific Time, we are hosting an executive briefing on Kimi K3 use cases with Joey Zwicker, who leads all forward-deployed engineering at Baseten, and Philip Kiely, author of *Inference Engineering*.
Kimi K3 is available today on Baseten Model APIs. Welcome to the new frontier in open weight intelligence.
AI算出
主要ニュースainew評価高い
Moonshot AI の Kimi K3 が Baseten で利用可能になったという事実を報じており、AI モデルの展開に関する主要ニュースとして扱える。既存記事(Modal での利用)と比較して、プラットフォームが異なるため独立した情報増分があるが、発表内容自体は類似しているため novelty は中程度とした。
6つの評価軸を見る
- AI関連度
- 100
- 情報源の信頼性
- 100
- 新規性
- 50
- 調べる価値
- 75
- 重複の少なさ
- 75
- 日本での有用性
- 25
同じ出来事を2媒体で確認
同じ出来事を扱う別媒体の記事です。見出しと公開時刻を比較できます。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み