2025-12-06 12:46:40 +09:00
|
|
|
|
import type { Metadata } from "next"
|
|
|
|
|
|
import Image from "next/image"
|
|
|
|
|
|
import Link from "next/link"
|
|
|
|
|
|
import { FaGithub } from "react-icons/fa"
|
2025-12-03 13:36:36 +09:00
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
|
title: "概要 - Next AI Draw.io",
|
2025-12-06 12:46:40 +09:00
|
|
|
|
description:
|
|
|
|
|
|
"AI搭載のダイアグラム作成ツール - チャット、描画、可視化。自然言語でAWS、GCP、Azureアーキテクチャ図を作成。",
|
|
|
|
|
|
keywords: [
|
|
|
|
|
|
"AIダイアグラム",
|
|
|
|
|
|
"draw.io",
|
|
|
|
|
|
"AWSアーキテクチャ",
|
|
|
|
|
|
"GCPダイアグラム",
|
|
|
|
|
|
"Azureダイアグラム",
|
|
|
|
|
|
"LLM",
|
|
|
|
|
|
],
|
|
|
|
|
|
}
|
2025-12-03 13:36:36 +09:00
|
|
|
|
|
2025-12-09 09:57:09 +09:00
|
|
|
|
function formatNumber(num: number): string {
|
|
|
|
|
|
if (num >= 1000) {
|
|
|
|
|
|
return `${num / 1000}k`
|
|
|
|
|
|
}
|
|
|
|
|
|
return num.toString()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-03 13:36:36 +09:00
|
|
|
|
export default function AboutJA() {
|
2025-12-09 09:57:09 +09:00
|
|
|
|
const dailyRequestLimit = Number(process.env.DAILY_REQUEST_LIMIT) || 20
|
|
|
|
|
|
const dailyTokenLimit = Number(process.env.DAILY_TOKEN_LIMIT) || 500000
|
|
|
|
|
|
const tpmLimit = Number(process.env.TPM_LIMIT) || 50000
|
|
|
|
|
|
|
2025-12-03 13:36:36 +09:00
|
|
|
|
return (
|
|
|
|
|
|
<div className="min-h-screen bg-gray-50">
|
|
|
|
|
|
{/* Navigation */}
|
|
|
|
|
|
<header className="bg-white border-b border-gray-200">
|
|
|
|
|
|
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
|
|
|
|
<div className="flex items-center justify-between">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/"
|
|
|
|
|
|
className="text-xl font-bold text-gray-900 hover:text-gray-700"
|
|
|
|
|
|
>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
Next AI Draw.io
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<nav className="flex items-center gap-6 text-sm">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/"
|
|
|
|
|
|
className="text-gray-600 hover:text-gray-900 transition-colors"
|
|
|
|
|
|
>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
エディタ
|
|
|
|
|
|
</Link>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/about/ja"
|
|
|
|
|
|
className="text-blue-600 font-semibold"
|
|
|
|
|
|
>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
概要
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href="https://github.com/DayuanJiang/next-ai-draw-io"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-gray-600 hover:text-gray-900 transition-colors"
|
|
|
|
|
|
aria-label="GitHubで見る"
|
|
|
|
|
|
>
|
|
|
|
|
|
<FaGithub className="w-5 h-5" />
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</nav>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Main Content */}
|
|
|
|
|
|
<main className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
|
|
|
|
|
<article className="prose prose-lg max-w-none">
|
|
|
|
|
|
{/* Title */}
|
|
|
|
|
|
<div className="text-center mb-8">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h1 className="text-4xl font-bold text-gray-900 mb-2">
|
|
|
|
|
|
Next AI Draw.io
|
|
|
|
|
|
</h1>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-xl text-gray-600 font-medium">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
AI搭載のダイアグラム作成ツール -
|
|
|
|
|
|
チャット、描画、可視化
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
<div className="flex justify-center gap-4 mt-4 text-sm">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/about"
|
|
|
|
|
|
className="text-gray-600 hover:text-blue-600"
|
|
|
|
|
|
>
|
|
|
|
|
|
English
|
|
|
|
|
|
</Link>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<span className="text-gray-400">|</span>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/about/cn"
|
|
|
|
|
|
className="text-gray-600 hover:text-blue-600"
|
|
|
|
|
|
>
|
|
|
|
|
|
中文
|
|
|
|
|
|
</Link>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<span className="text-gray-400">|</span>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
href="/about/ja"
|
|
|
|
|
|
className="text-blue-600 font-semibold"
|
|
|
|
|
|
>
|
|
|
|
|
|
日本語
|
|
|
|
|
|
</Link>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<div className="relative mb-8 rounded-2xl bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50 p-[1px] shadow-lg">
|
|
|
|
|
|
<div className="absolute inset-0 rounded-2xl bg-gradient-to-br from-amber-400 via-orange-400 to-yellow-400 opacity-20" />
|
2025-12-08 20:26:51 +09:00
|
|
|
|
<div className="relative rounded-2xl bg-white/80 backdrop-blur-sm p-6">
|
|
|
|
|
|
{/* Header */}
|
|
|
|
|
|
<div className="mb-4">
|
|
|
|
|
|
<h3 className="text-lg font-bold text-gray-900 tracking-tight">
|
2025-12-29 11:30:58 +09:00
|
|
|
|
ByteDance Doubao提供
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Story */}
|
|
|
|
|
|
<div className="space-y-3 text-sm text-gray-700 leading-relaxed mb-5">
|
|
|
|
|
|
<p>
|
2025-12-29 11:30:58 +09:00
|
|
|
|
朗報です!
|
|
|
|
|
|
<a
|
|
|
|
|
|
href="https://console.volcengine.com/ark/region:ark+cn-beijing/overview?briefPage=0&briefType=introduce&type=new&utm_campaign=doubao&utm_content=aidrawio&utm_medium=github&utm_source=coopensrc&utm_term=project"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="font-semibold text-blue-600 hover:underline"
|
|
|
|
|
|
>
|
|
|
|
|
|
ByteDance Doubao
|
|
|
|
|
|
</a>
|
|
|
|
|
|
様のご支援により、デモサイトでは強力な{" "}
|
2025-12-09 15:53:59 +09:00
|
|
|
|
<span className="font-semibold text-amber-700">
|
2025-12-29 11:30:58 +09:00
|
|
|
|
K2-thinking
|
2025-12-09 15:53:59 +09:00
|
|
|
|
</span>{" "}
|
2025-12-29 11:30:58 +09:00
|
|
|
|
モデルを利用できるようになり、より高品質なダイアグラム生成が可能になりました。リンクから登録すると、すべてのモデルで使える{" "}
|
2025-12-08 20:26:51 +09:00
|
|
|
|
<span className="font-semibold text-amber-700">
|
2025-12-29 11:30:58 +09:00
|
|
|
|
50万トークン
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</span>
|
2025-12-29 11:30:58 +09:00
|
|
|
|
が無料でもらえます!
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-12-29 11:30:58 +09:00
|
|
|
|
{/* Usage Limits */}
|
|
|
|
|
|
<p className="text-sm text-gray-600 mb-3">
|
|
|
|
|
|
現在の使用制限:
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div className="grid grid-cols-3 gap-3 mb-5">
|
|
|
|
|
|
<div className="text-center p-3 bg-white/60 rounded-lg">
|
|
|
|
|
|
<p className="text-lg font-bold text-amber-600">
|
|
|
|
|
|
{formatNumber(dailyRequestLimit)}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-xs text-gray-500">
|
|
|
|
|
|
リクエスト/日
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-center p-3 bg-white/60 rounded-lg">
|
|
|
|
|
|
<p className="text-lg font-bold text-amber-600">
|
2025-12-09 09:57:09 +09:00
|
|
|
|
{formatNumber(dailyTokenLimit)}
|
2025-12-29 11:30:58 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-xs text-gray-500">
|
|
|
|
|
|
トークン/日
|
|
|
|
|
|
</p>
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</div>
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<div className="text-center p-3 bg-white/60 rounded-lg">
|
|
|
|
|
|
<p className="text-lg font-bold text-amber-600">
|
|
|
|
|
|
{formatNumber(tpmLimit)}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-xs text-gray-500">
|
|
|
|
|
|
トークン/分
|
|
|
|
|
|
</p>
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Divider */}
|
|
|
|
|
|
<div className="flex items-center gap-3 my-5">
|
|
|
|
|
|
<div className="flex-1 h-px bg-gradient-to-r from-transparent via-amber-300 to-transparent" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
feat: add bring-your-own-API-key support (#186)
- Add AI provider settings to config panel (provider, model, API key, base URL)
- Support 7 providers: OpenAI, Anthropic, Google, Azure, OpenRouter, DeepSeek, SiliconFlow
- Client API keys stored in localStorage, never stored on server
- Client settings override server env vars when provided
- Skip server credential validation when client provides API key
- Bypass usage limits (request/token/TPM) when using own API key
- Add /api/config endpoint for fetching usage limits
- Add privacy notices to settings dialog, about pages, and quota toast
- Add clear settings button to reset saved API keys
- Update README files (EN/CN/JA) with BYOK documentation
Co-authored-by: dayuan.jiang <jiangdy@amazon.co.jp>
2025-12-09 17:50:07 +09:00
|
|
|
|
{/* Bring Your Own Key */}
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<div className="text-center">
|
feat: add bring-your-own-API-key support (#186)
- Add AI provider settings to config panel (provider, model, API key, base URL)
- Support 7 providers: OpenAI, Anthropic, Google, Azure, OpenRouter, DeepSeek, SiliconFlow
- Client API keys stored in localStorage, never stored on server
- Client settings override server env vars when provided
- Skip server credential validation when client provides API key
- Bypass usage limits (request/token/TPM) when using own API key
- Add /api/config endpoint for fetching usage limits
- Add privacy notices to settings dialog, about pages, and quota toast
- Add clear settings button to reset saved API keys
- Update README files (EN/CN/JA) with BYOK documentation
Co-authored-by: dayuan.jiang <jiangdy@amazon.co.jp>
2025-12-09 17:50:07 +09:00
|
|
|
|
<h4 className="text-base font-bold text-gray-900 mb-2">
|
|
|
|
|
|
自分のAPIキーを使用
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
<p className="text-sm text-gray-600 mb-2 max-w-md mx-auto">
|
2025-12-29 11:30:58 +09:00
|
|
|
|
お好みのプロバイダーで自分のAPIキーを使用することもできます。チャットパネルの設定アイコンをクリックして設定してください。
|
feat: add bring-your-own-API-key support (#186)
- Add AI provider settings to config panel (provider, model, API key, base URL)
- Support 7 providers: OpenAI, Anthropic, Google, Azure, OpenRouter, DeepSeek, SiliconFlow
- Client API keys stored in localStorage, never stored on server
- Client settings override server env vars when provided
- Skip server credential validation when client provides API key
- Bypass usage limits (request/token/TPM) when using own API key
- Add /api/config endpoint for fetching usage limits
- Add privacy notices to settings dialog, about pages, and quota toast
- Add clear settings button to reset saved API keys
- Update README files (EN/CN/JA) with BYOK documentation
Co-authored-by: dayuan.jiang <jiangdy@amazon.co.jp>
2025-12-09 17:50:07 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-xs text-gray-500 max-w-md mx-auto">
|
|
|
|
|
|
キーはブラウザのローカルに保存され、サーバーには保存されません。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2025-12-08 20:26:51 +09:00
|
|
|
|
</div>
|
2025-12-03 16:47:45 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-700">
|
|
|
|
|
|
AI機能とdraw.ioダイアグラムを統合したNext.jsウェブアプリケーションです。自然言語コマンドとAI支援の可視化により、ダイアグラムを作成、修正、強化できます。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Features */}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h2 className="text-2xl font-semibold text-gray-900 mt-10 mb-4">
|
|
|
|
|
|
機能
|
|
|
|
|
|
</h2>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<ul className="list-disc pl-6 text-gray-700 space-y-2">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<li>
|
|
|
|
|
|
<strong>LLM搭載のダイアグラム作成</strong>
|
|
|
|
|
|
:大規模言語モデルを活用して、自然言語コマンドで直接draw.ioダイアグラムを作成・操作
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>画像ベースのダイアグラム複製</strong>
|
|
|
|
|
|
:既存のダイアグラムや画像をアップロードし、AIが自動的に複製・強化
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>ダイアグラム履歴</strong>
|
|
|
|
|
|
:すべての変更を追跡する包括的なバージョン管理。AI編集前のダイアグラムの以前のバージョンを表示・復元可能
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>
|
|
|
|
|
|
インタラクティブなチャットインターフェース
|
|
|
|
|
|
</strong>
|
|
|
|
|
|
:AIとリアルタイムでコミュニケーションしてダイアグラムを改善
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>
|
|
|
|
|
|
AWSアーキテクチャダイアグラムサポート
|
|
|
|
|
|
</strong>
|
|
|
|
|
|
:AWSアーキテクチャダイアグラムの生成を専門的にサポート
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>アニメーションコネクタ</strong>
|
|
|
|
|
|
:より良い可視化のためにダイアグラム要素間に動的でアニメーション化されたコネクタを作成
|
|
|
|
|
|
</li>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Examples */}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h2 className="text-2xl font-semibold text-gray-900 mt-10 mb-4">
|
|
|
|
|
|
例
|
|
|
|
|
|
</h2>
|
|
|
|
|
|
<p className="text-gray-700 mb-6">
|
|
|
|
|
|
以下はいくつかのプロンプト例と生成されたダイアグラムです:
|
|
|
|
|
|
</p>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
|
|
|
|
|
|
<div className="space-y-8">
|
|
|
|
|
|
{/* Animated Transformer */}
|
|
|
|
|
|
<div className="text-center">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h3 className="text-lg font-semibold text-gray-900 mb-2">
|
|
|
|
|
|
アニメーションTransformerコネクタ
|
|
|
|
|
|
</h3>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-600 mb-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<strong>プロンプト:</strong>{" "}
|
|
|
|
|
|
<strong>アニメーションコネクタ</strong>
|
|
|
|
|
|
付きのTransformerアーキテクチャ図を作成してください。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Image
|
|
|
|
|
|
src="/animated_connectors.svg"
|
|
|
|
|
|
alt="アニメーションコネクタ付きTransformerアーキテクチャ"
|
|
|
|
|
|
width={480}
|
|
|
|
|
|
height={360}
|
|
|
|
|
|
className="mx-auto"
|
|
|
|
|
|
/>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Cloud Architecture Grid */}
|
|
|
|
|
|
<div className="grid md:grid-cols-2 gap-6">
|
|
|
|
|
|
<div className="text-center">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h3 className="text-lg font-semibold text-gray-900 mb-2">
|
|
|
|
|
|
GCPアーキテクチャ図
|
|
|
|
|
|
</h3>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-600 text-sm mb-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<strong>プロンプト:</strong>{" "}
|
|
|
|
|
|
<strong>GCPアイコン</strong>
|
|
|
|
|
|
を使用してGCPアーキテクチャ図を生成してください。ユーザーがインスタンス上でホストされているフロントエンドに接続します。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Image
|
|
|
|
|
|
src="/gcp_demo.svg"
|
|
|
|
|
|
alt="GCPアーキテクチャ図"
|
|
|
|
|
|
width={400}
|
|
|
|
|
|
height={300}
|
|
|
|
|
|
className="mx-auto"
|
|
|
|
|
|
/>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-center">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h3 className="text-lg font-semibold text-gray-900 mb-2">
|
|
|
|
|
|
AWSアーキテクチャ図
|
|
|
|
|
|
</h3>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-600 text-sm mb-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<strong>プロンプト:</strong>{" "}
|
|
|
|
|
|
<strong>AWSアイコン</strong>
|
|
|
|
|
|
を使用してAWSアーキテクチャ図を生成してください。ユーザーがインスタンス上でホストされているフロントエンドに接続します。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Image
|
|
|
|
|
|
src="/aws_demo.svg"
|
|
|
|
|
|
alt="AWSアーキテクチャ図"
|
|
|
|
|
|
width={400}
|
|
|
|
|
|
height={300}
|
|
|
|
|
|
className="mx-auto"
|
|
|
|
|
|
/>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-center">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h3 className="text-lg font-semibold text-gray-900 mb-2">
|
|
|
|
|
|
Azureアーキテクチャ図
|
|
|
|
|
|
</h3>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-600 text-sm mb-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<strong>プロンプト:</strong>{" "}
|
|
|
|
|
|
<strong>Azureアイコン</strong>
|
|
|
|
|
|
を使用してAzureアーキテクチャ図を生成してください。ユーザーがインスタンス上でホストされているフロントエンドに接続します。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Image
|
|
|
|
|
|
src="/azure_demo.svg"
|
|
|
|
|
|
alt="Azureアーキテクチャ図"
|
|
|
|
|
|
width={400}
|
|
|
|
|
|
height={300}
|
|
|
|
|
|
className="mx-auto"
|
|
|
|
|
|
/>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-center">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h3 className="text-lg font-semibold text-gray-900 mb-2">
|
|
|
|
|
|
猫のスケッチ
|
|
|
|
|
|
</h3>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-600 text-sm mb-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<strong>プロンプト:</strong>{" "}
|
|
|
|
|
|
かわいい猫を描いてください。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<Image
|
|
|
|
|
|
src="/cat_demo.svg"
|
|
|
|
|
|
alt="猫の絵"
|
|
|
|
|
|
width={240}
|
|
|
|
|
|
height={240}
|
|
|
|
|
|
className="mx-auto"
|
|
|
|
|
|
/>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* How It Works */}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h2 className="text-2xl font-semibold text-gray-900 mt-10 mb-4">
|
|
|
|
|
|
仕組み
|
|
|
|
|
|
</h2>
|
|
|
|
|
|
<p className="text-gray-700 mb-4">
|
|
|
|
|
|
本アプリケーションは以下の技術を使用しています:
|
|
|
|
|
|
</p>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<ul className="list-disc pl-6 text-gray-700 space-y-2">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<li>
|
|
|
|
|
|
<strong>Next.js</strong>
|
|
|
|
|
|
:フロントエンドフレームワークとルーティング
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>Vercel AI SDK</strong>(<code>ai</code> +{" "}
|
|
|
|
|
|
<code>@ai-sdk/*</code>
|
|
|
|
|
|
):ストリーミングAIレスポンスとマルチプロバイダーサポート
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<strong>react-drawio</strong>
|
|
|
|
|
|
:ダイアグラムの表現と操作
|
|
|
|
|
|
</li>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</ul>
|
|
|
|
|
|
<p className="text-gray-700 mt-4">
|
|
|
|
|
|
ダイアグラムはdraw.ioでレンダリングできるXMLとして表現されます。AIがコマンドを処理し、それに応じてこのXMLを生成または変更します。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Multi-Provider Support */}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<h2 className="text-2xl font-semibold text-gray-900 mt-10 mb-4">
|
|
|
|
|
|
マルチプロバイダーサポート
|
|
|
|
|
|
</h2>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<ul className="list-disc pl-6 text-gray-700 space-y-1">
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<li>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href="https://console.volcengine.com/ark/region:ark+cn-beijing/overview?briefPage=0&briefType=introduce&type=new&utm_campaign=doubao&utm_content=aidrawio&utm_medium=github&utm_source=coopensrc&utm_term=project"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-blue-600 hover:underline"
|
|
|
|
|
|
>
|
|
|
|
|
|
ByteDance Doubao
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</li>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<li>AWS Bedrock(デフォルト)</li>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<li>
|
|
|
|
|
|
OpenAI / OpenAI互換API(<code>OPENAI_BASE_URL</code>
|
|
|
|
|
|
経由)
|
|
|
|
|
|
</li>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<li>Anthropic</li>
|
|
|
|
|
|
<li>Google AI</li>
|
|
|
|
|
|
<li>Azure OpenAI</li>
|
|
|
|
|
|
<li>Ollama</li>
|
|
|
|
|
|
<li>OpenRouter</li>
|
|
|
|
|
|
<li>DeepSeek</li>
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<li>SiliconFlow</li>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</ul>
|
|
|
|
|
|
<p className="text-gray-700 mt-4">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
注:<code>claude-sonnet-4-5</code>
|
|
|
|
|
|
はAWSロゴ付きのdraw.ioダイアグラムで学習されているため、AWSアーキテクチャダイアグラムを作成したい場合は最適な選択です。
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Support */}
|
2025-12-29 11:30:58 +09:00
|
|
|
|
<h2 className="text-2xl font-semibold text-gray-900 mt-10 mb-4">
|
|
|
|
|
|
サポート&お問い合わせ
|
|
|
|
|
|
</h2>
|
|
|
|
|
|
<p className="text-gray-700 mb-4 font-semibold">
|
|
|
|
|
|
デモサイトのAPIトークン使用を支援してくださった{" "}
|
|
|
|
|
|
<a
|
|
|
|
|
|
href="https://console.volcengine.com/ark/region:ark+cn-beijing/overview?briefPage=0&briefType=introduce&type=new&utm_campaign=doubao&utm_content=aidrawio&utm_medium=github&utm_source=coopensrc&utm_term=project"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-blue-600 hover:underline"
|
|
|
|
|
|
>
|
|
|
|
|
|
ByteDance Doubao
|
|
|
|
|
|
</a>{" "}
|
|
|
|
|
|
様に、心より感謝申し上げます。
|
|
|
|
|
|
</p>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
<p className="text-gray-700">
|
|
|
|
|
|
このプロジェクトが役に立ったら、ライブデモサイトのホスティングを支援するために{" "}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<a
|
|
|
|
|
|
href="https://github.com/sponsors/DayuanJiang"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-blue-600 hover:underline"
|
|
|
|
|
|
>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
スポンサー
|
|
|
|
|
|
</a>{" "}
|
|
|
|
|
|
をご検討ください!
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-gray-700 mt-2">
|
|
|
|
|
|
サポートやお問い合わせについては、{" "}
|
2025-12-06 12:46:40 +09:00
|
|
|
|
<a
|
|
|
|
|
|
href="https://github.com/DayuanJiang/next-ai-draw-io"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
|
className="text-blue-600 hover:underline"
|
|
|
|
|
|
>
|
2025-12-03 13:36:36 +09:00
|
|
|
|
GitHubリポジトリ
|
|
|
|
|
|
</a>{" "}
|
|
|
|
|
|
でissueを開くか、ご連絡ください:me[at]jiang.jp
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{/* CTA */}
|
|
|
|
|
|
<div className="mt-12 text-center">
|
|
|
|
|
|
<Link
|
|
|
|
|
|
href="/"
|
|
|
|
|
|
className="inline-block bg-blue-600 text-white px-8 py-3 rounded-lg font-semibold hover:bg-blue-700 transition-colors"
|
|
|
|
|
|
>
|
|
|
|
|
|
エディタを開く
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</article>
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Footer */}
|
|
|
|
|
|
<footer className="bg-white border-t border-gray-200 mt-16">
|
|
|
|
|
|
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
|
|
|
|
|
|
<p className="text-center text-gray-600 text-sm">
|
2025-12-06 12:46:40 +09:00
|
|
|
|
Next AI Draw.io -
|
|
|
|
|
|
オープンソースAI搭載ダイアグラムジェネレーター
|
2025-12-03 13:36:36 +09:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
</div>
|
2025-12-06 12:46:40 +09:00
|
|
|
|
)
|
2025-12-03 13:36:36 +09:00
|
|
|
|
}
|