⚠️

モデル提供終了

このモデルはAPIから削除されました。このページは参考用に保持されています。

代替案を見る
A

claude-opus-4-5-20251101-thinking

4k ContextTextPopular

Anthropic が提供する claude-opus-4-5-20251101-thinking モデル。4K のコンテキストをサポートし、Chat タスクに最適です。

能力レーダー

Compare with Claude 3

概要 claude-opus-4-5-20251101-thinking

"高信頼性API"

claude-opus-4-5-20251101-thinking は Anthropic が開発した高度なAIモデルです。4K のコンテキストウィンドウを備え、Chat タスクの処理に優れています。このモデルはOkRouter APIを通じて提供され、超低遅延と高い信頼性を実現します。

主な強み

  • 高信頼性API
  • エンタープライズ級のセキュリティ

🎯 主なユースケース

  • AIカスタマーサポート
  • 長い文書の分析と要約
  • クリエイティブライティング支援
  • 多言語翻訳

オンラインお試し

Parameters Setup

0.7

Controls randomness: Lowering results in less random completions.

Return data chunks as they arrive

request.js
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.okrouter.com/v1",
  apiKey: process.env.OKROUTER_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "claude-opus-4-5-20251101-thinking",
  messages: [{ role: "user", content: "Hello world!" }],
  temperature: 0.7,
  stream: true,
});