⚡ エージェント基盤ファミリー
エージェント基盤と 言語プラットフォーム
自律型エージェントの基盤:安全なツール実行環境、長期記憶、知識インデックス、ニューラル翻訳、トレース分析。
自律型エージェント実行ランタイム
POST/v1/agents/execute
状態ロールバック機能を備えたサンドボックス実行環境。オーケストレーションオーバーヘッドは50ms未満。
- Sandboxed multi-step tool execution with human-in-the-loop approvals
- Stateful execution graphs with automatic retry and rollback primitives
- Sub-50ms orchestration overhead on dedicated bare-metal nodes
RuntimeSandboxed WASM / MicroVM
Tool TimeoutUp to 300s
POST /v1/agents/executecURL
curl -X POST https://api.brainiall.com/v1/agents/execute \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "ag_research_99",
"prompt": "Analyze latest SEC filings for ACME Corp and extract gross margin trend.",
"tools": ["web_search", "document_extract"]
}'エピソード型ベクター・セッション記憶
POST/v1/agents/memory
高密度ベクター検索、キーワード検索、自動セッション要約を組み合わせた長期対話記憶。
- Persistent episodic recall and conversational history for AI agents
- Hybrid dense vector + sparse keyword retrieval with temporal decay
- Auto-summarization of stale session turns to minimize token costs
POST /v1/agents/memorycURL
curl -X POST https://api.brainiall.com/v1/agents/memory \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"user_id": "usr_4401",
"event": "User prefers dark mode UI and Portuguese audio narration",
"tags": ["preferences", "ui"]
}'マネージド知識ベース・RAGインデックス
POST/v1/knowledge/query
セマンティックチャンキング、ハイブリッドベクター検索、根拠付き引用の検証。
- Managed RAG vector indexing with semantic chunking and reranking
- Returns grounded citation links with exact character start/end offsets
POST /v1/knowledge/querycURL
curl -X POST https://api.brainiall.com/v1/knowledge/query \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"index_id": "kb_enterprise_docs",
"query": "What is our policy on SOC2 audit logs retention?",
"top_k": 3
}'ニューラル機械翻訳(100言語対応)
POST/v1/language/translate
用語集の適用とレイアウトを維持した高速なドキュメント・対話翻訳。
- Neural translation across 100 languages with custom glossary enforcement
- Preserves HTML tags, markdown syntax, and code formatting during translation
POST /v1/language/translatecURL
curl -X POST https://api.brainiall.com/v1/language/translate \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"text": "Hello world, welcome to Brainiall Developer Portal.",
"source_lang": "en",
"target_lang": "pt-br"
}'テキストインテリジェンス・要約
POST/v1/language/summarize
ハルシネーションのない確かな根拠付きの抽出型および生成型文書要約。
- Extractive and abstractive document summarization with length control
- Grounded question answering with zero external hallucinations
POST /v1/language/summarizecURL
curl -X POST https://api.brainiall.com/v1/language/summarize \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"document": "<long-text-body>",
"mode": "abstractive",
"max_bullet_points": 5
}'構造化Web抽出・クローリング
POST/v1/web/extract
クリーンなDOM解析とJavaScript描画による、構造化Markdownへの動的ページ変換。
- Clean DOM extraction, JavaScript rendering, and dynamic page scraping
- Converts complex web pages to clean Markdown or structured JSON schemas
POST /v1/web/extractcURL
curl -X POST https://api.brainiall.com/v1/web/extract \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"url": "https://example.com/pricing",
"render_js": true,
"format": "markdown"
}'LLMオブザーバビリティ・コスト追跡
POST/v1/observability/traces
トークンコスト、遅延パーセンタイル、エージェントの実行スパンをリアルタイムで追跡。
- Real-time token cost, latency percentiles, and span tracing for agent graphs
- Automated error alerting and prompt regression monitoring
POST /v1/observability/tracescURL
curl -X POST https://api.brainiall.com/v1/observability/traces \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-d '{
"trace_id": "tr_9912a",
"span_name": "agent_planning",
"duration_ms": 142,
"cost_usd": 0.00041
}'