モデル比較

DeepSeek V4 Flash vs Inkling

料金・コンテキスト長・実際の回答で比較(2026年8月時点)

DeepSeek V4 Flash(DeepSeek)とInkling(Thinkingmachines)を、FastMetalのゲートウェイで実際に呼び出せる条件で比較します。どちらも同じOpenAI互換エンドポイントとAPIキーから利用でき、切り替えは model の文字列を変えるだけです。

スペックと料金

deepseek logoDeepSeek V4 FlashInkling
提供元DeepSeekThinkingmachines
入力(100万トークンあたり)¥16.08¥178.7
出力(100万トークンあたり)¥32.17¥723.74
想定コスト(入力1,000・出力500トークン × 1,000回)¥32¥541
コンテキスト長1,048,576 トークン524,288 トークン
リリース日2026/4/242026/7/17
入力モダリティtexttext, image, audio
アリーナ 総合#79 · ELO 1,436#71 · ELO 1,443
アリーナ 日本語#67 · ELO 1,390圏外
アリーナ コーディング#80 · ELO 1,484#64 · ELO 1,496

料金はFastMetalの円建て単価(税別)。アリーナ順位は公開リーダーボードの最新取得時点の値です。

どちらを選ぶべきか

  • 料金重視ならDeepSeek V4 Flash。出力100万トークンあたり¥32.17で、Inklingより96%安くなります。
  • 総合の評価はアリーナ順位でInklingが上です(71位。DeepSeek V4 Flashは79位)。
  • コーディングの評価はアリーナ順位でInklingが上です(64位。DeepSeek V4 Flashは80位)。
  • 長い文書を扱うならDeepSeek V4 Flash。コンテキスト長は1,048,576トークンで、Inklingの524,288トークンより広くとれます。
  • 迷ったら両方を同じキーで試せます。model の文字列を変えるだけで切り替わり、料金はそれぞれの単価で従量課金されます。

同じプロンプトへの実際の回答

FastMetalのゲートウェイが返した回答をそのまま並べています。ベンチマークの数字ではなく、実際の出力です。

このエラーをデバッグして

以下のエラーがPythonアプリケーションで発生しています。原因を特定して修正してください。 Traceback (most recent call last): File "app.py", line 23, in get_user_orders total = sum(order["price"] * order["quantity"] for order in orders) TypeError: unsupport…

DeepSeek V4 Flash

The error occurs because the `price` field returned by the database query is a **string** (e.g., `'19.99'`), not a numeric type. In Python, multiplying a string by an integer is actually valid (it repeats the string), but the intended operation is numeric multiplication. The error message `TypeError: unsupported operand type(s) for *: 'str' and 'int'` is misleading because string * int is allowed, but it may arise if the string contains non‑numeric characters or if the database driver uses a custom type that behaves like a string. Regardless, the fix is to convert `price` to a numeric type (e.g., `float` or `Decimal`) before multiplication. ### Corrected code: ```python def get_user_orders(…
応答時間 40.9秒出力 4846 トークン

Inkling

このエラーの原因は、**データベースから取得した `price` が文字列(`str`)として返されている**ため、整数(`int`)の `quantity` と掛け算できないことです。 SQLの結果セットを辞書(`order["price"]` など)で扱っている場合、DBドライバやカラムのデータ型(例:`VARCHAR` や `TEXT`、あるいはドライバの仕様)によって数値が文字列のまま渡されることがあります。 ### 修正方法 `price`(必要なら `quantity` も)を数値型に変換してから計算します。価格は小数を含む可能性があるため、`float()` または `Decimal` を使うのが適切です。 ```python from decimal import Decimal def get_user_orders(user_id): orders = db.query("SELECT price, quantity FROM orders WHERE user_id = %s", user_id) # price を Decimal(または float)に、quantity を int に変換 total = sum( Decimal(str(order["price"])) * int(order["quantity"]) for order in orders ) return {"user_id": user_id, "total": total, "orders":…
応答時間 22.4秒出力 1285 トークン

コードレビュー

以下のTypeScript関数をレビューして、可読性・パフォーマンス・ベストプラクティスの観点から改善点を提案してください。 async function fetchAllUsers(page: number = 1): Promise<any[]> { let allUsers: any[] = []; let hasMore = true; let currentPage = page; while (hasMo…

DeepSeek V4 Flash

以下に、可読性・パフォーマンス・ベストプラクティスの観点から改善点を提案します。 ## 改善点一覧 ### 1. 型の明確化 (可読性・安全性) ```typescript // 改善前 async function fetchAllUsers(page: number = 1): Promise<any[]> { // 改善後 interface UserResponse { id: number; first_name: string; last_name: string; email: string; status: string; } interface ApiResponse { users: UserResponse[]; total?: number; hasMore?: boolean; } interface ProcessedUser { id: number; name: string; email: string; } async function fetchAllUsers(page: number = 1): Promise<ProcessedUser[]> { ``` ### 2. エラーハンドリングの追加 (ベストプラクティス) ```typescript async function fetchPage(currentPage: number): Promise<ApiResponse> { const response = await fetch(`/api/users?pag…
応答時間 21.5秒出力 1522 トークン

Inkling

以下、**可読性・パフォーマンス・ベストプラクティス**の観点からレビューと改善案を提示します。 --- ## 主要な問題点(要約) | 観点 | 問題 | |------|------| | **型安全性** | `any` が乱用されており、コンパイル時のチェックが効かない | | **エラーハンドリング** | `fetch` の失敗(HTTPエラー)、JSONパース失敗、API形式不正を一切考慮していない | | **無限ループリスク** | APIが常に100件返し続けた場合、`while` が永遠に続く | | **可読性** | インデックスループ、`let` の乱用、文字列結合(`+`)、マジックナンバー | | **セキュリティ/堅牢性** | クエリパラメータがエンコードされていない、レスポンス構造を検証していない | --- ## 改善版コード ```typescript // --- 型定義 --- interface RawUser { id: string | number; first_name: string; last_name: string; email: string; status: string; } interface UsersApiResponse { users: RawUser[]; } export interface User { id: string | number; name: string; email: string; } const DEFAULT_LIM…
応答時間 45.2秒出力 4396 トークン

SQLクエリの最適化

以下のSQLクエリは500万行のテーブルに対して実行すると30秒以上かかります。最適化してください。 SELECT p.product_name, c.category_name, COUNT(o.order_id) as order_count, SUM(o.amount) as total_sales, AVG(r.rating) as avg_rating FROM products p LEFT JOIN…

DeepSeek V4 Flash

このクエリは、500万行のテーブルに対して非効率な結合・集計・ソートを行っているため、30秒以上かかっています。以下の改善策を実施することで、処理時間を大幅に短縮できます。 ## 1. インデックスの追加 現在のインデックス(products(id)、orders(order_id))だけでは、WHERE句や結合に必要な絞り込みができていません。以下を追加します。 ```sql -- products: WHERE句のフィルタと結合キー用 CREATE INDEX idx_products_is_active_id ON products (is_active, id); -- order_details: product_idでの結合を高速化 CREATE INDEX idx_order_details_product_id ON order_details (product_id); -- orders: 結合とフィルタ条件(status, created_at)をカバー CREATE INDEX idx_orders_status_created_at ON orders (status, created_at, order_id); -- reviews: 結合用 CREATE INDEX idx_reviews_product_id ON reviews (product_id); ``` ## 2. LEFT JOINの見直し(実質INNER JOINになっている) 現在のクエリは `LEFT JOIN orders ... AND o.status =…
応答時間 61.4秒出力 3026 トークン

Inkling

このクエリには**「結果が間違う(ファントラップ)」**と**「5M行をフルスキャンして爆発的に増える」**の両方の致命的な問題があります。以下、原因と最適化案を説明します。 --- ## 1. 主な問題点 ### ① ファントラップ(JOINの爆発と集計の誤り) `order_details` と `reviews` を両方 `p.id` で結合しています。これは**1つの商品に対して「注文明細×レビュー」が直積(Cartesian Product)**で発生することを意味します。 - 商品Aに注文が100件、レビューが50件あると → **5,000行**が生成 - その結果、`COUNT(o.order_id)` や `SUM(o.amount)` がレビュー件数倍に膨らみ、`AVG(r.rating)` も正しく計算されません。 ### ② WHERE句でのLEFT JOINの無効化 ```sql LEFT JOIN orders o ... WHERE o.created_at >= '2024-04-01' ``` `LEFT JOIN` の右側テーブルに `WHERE` で条件をつけると、**NULL(注文なしの商品)が除外され、実質INNER JOINになります**。しかもデータベースはまず全結合を作ってからフィルタするため、無駄な中間結果が巨大になります。 ### ③ インデックスの不足 存在するのは `products(id)` と `orders(order_id)` のみ。以下が欠落しています: - `products(is_active,…
応答時間 81.6秒出力 9649 トークン

他のプロンプトでも比較する →

よくある質問

DeepSeek V4 FlashとInkling、料金はどちらが安いですか?
出力100万トークンあたりDeepSeek V4 Flashは¥32.17、Inklingは¥723.74で、DeepSeek V4 Flashの方が安くなります(FastMetalの円建て単価・税別)。
DeepSeek V4 FlashとInklingのコンテキスト長の違いは?
DeepSeek V4 Flashは1,048,576トークン、Inklingは524,288トークンです。
DeepSeek V4 FlashとInkling、評価が高いのはどちらですか?
公開アリーナの順位ではDeepSeek V4 Flashが上です(DeepSeek V4 Flash 67位、Inkling 71位)。順位はリーダーボードの更新で変わります。
DeepSeek V4 FlashとInklingを同じAPIキーで使えますか?
はい。FastMetalのOpenAI互換エンドポイントで、model に "deepseek-v4-flash" または "inkling" を指定するだけで切り替えられます。料金はそれぞれの単価で、同じ前払い残高から従量課金されます。

どちらも同じAPIキーで試せます

アカウントを作成してクレジットをチャージすれば、DeepSeek V4 FlashとInklingをブラウザのチャットとAPIの両方から呼び出せます。月額料金はありません。

DeepSeek V4 Flashの他の比較

Inklingの他の比較