Spark SQL上でLLM機能をAIDP経由で実行し、ai_generate()関数を使って行データを直接SQLで要約・分類・抽出・充実させたり、集計結果に基づいて文章を生成したり、レイクハウス(データの統合保管場所)内で事実に基づくRAG的分析(検索結果を参照した生成)を行ったりできます。 次のような場合に使用: ユーザーがLLMで行のデータを処理したい、集計データから文章を作成したい、または根拠を持った分析を実行したいとき。 関数の仕様ではモデルを最優先に指定する方式になっており、実際に使用する前に利用可能なモデルをその都度確認する必要があります。
Run LLM functions inside Spark SQL on AIDP via ai_generate(). Use when the user wants to summarize/classify/extract/enrich rows with an LLM directly in SQL, generate narratives over aggregated results, or do grounded RAG-style analysis in the lakehouse. Signature is model-first; available models must be confirmed live before relying on it.
aidp-ai-sql — ai_generate() を使った LLM-in-SQLAIDP 上の Spark SQL 内から直接 LLM を呼び出し、SQL を離れることなくレイクハウスデータに対して 要約・分類・抽出・ナレーション生成を行います。 競合の多くの agent がインライン実行できないこの機能は、際立った差別化ポイントです。
これは SQL-helper スキルです。
インタラクティブな Spark SQL は、バンドルされたヘルパースクリプト scripts/aidp_sql.py 経由で実行されます
(api_key の DEFAULT プロファイルから UPST を生成し、スクラッチノートブックを自動作成して JSON を返します)。
aidp MCP および AIDP_SESSION は不要です。
ai_generate('<model>', '<prompt>')
例: ai_generate('openai.gpt-5.4', 'Summarize this supplier spend: ...')
openai.gpt-5.4・openai.gpt-4o・xai.grok-4 にて、model を先頭に置く (model, prompt) シグネチャを 実環境で検証済み。
利用前に必ず確認してください(情報の捏造禁止): このシグネチャおよび利用可能なモデル名を保証されたものとして扱う前に、対象クラスター上で実際に動作確認してください。 まず
SELECT ai_generate('<model>', 'hello')のような簡単なスモークテストを実行してください(下記参照)。 モデルの利用可否は環境によって異なります。モデル名が失敗した場合は、正しいモデル名を確認・質問してください。推測で補わないこと。
/modelsREST カタログで可否を判断しないでください。ai_generateはモデルを Spark エンジンレベルで解決するため、aidp-models-catalogのGET /models?modelType=GENERATIVE_AIが空リストを返す場合でも動作することがあります。ai_generateが使えるかどうかの判断基準は、カタログエンドポイントではなくスモークテストです。
python "$PLUGIN_DIR/scripts/aidp_sql.py" \
--region <region> --datalake <DATALAKE_OCID> --workspace <ws> --cluster <cluster-key> \
--code "<python/spark code>"
返却値は JSON 形式: {"status":"ok|error","outputs":[...],"spark_job_ids":[...]}
成功時は exit 0、セルエラー時は exit 1。
完全なフラグ一覧(--profile・--session-profile・--notebook・--timeout)は
scripts/aidp_sql.py を参照。
python "$PLUGIN_DIR/scripts/aidp_sql.py" --region <region> --datalake <ocid> --workspace <ws> --cluster <key> \
--code "spark.sql(\"SELECT ai_generate('openai.gpt-5.4', 'hello')\").show(truncate=False)"
oci raw-request 経由のクラスター操作については references/no-mcp-rest-map.md を参照)。ai_generate('<model>', '<grounded prompt>') を呼び出す。
行単位のエンリッチメントには、行数を制限した上でカラム式として呼び出す。--code にセルを渡す例:
ctx = spark.sql("SELECT ... FROM gold.supplier_spend ...").toPandas().to_string()
res = spark.sql(f"SELECT ai_generate('openai.gpt-5.4', 'As a finance analyst, summarize: {ctx}') AS summary")
res.show(truncate=False)
ai_generate はコストとレイテンシを考慮し、処理行数を制限すること。aidp-analyzing-data と組み合わせて使用aidp-ai-sql — LLM-in-SQL with ai_generate()Call an LLM directly inside Spark SQL on AIDP — summarize, classify, extract, or narrate over lakehouse data without leaving SQL. A signature differentiator: most competitor agents can't do this inline.
This is a SQL-helper skill. Interactive Spark SQL runs through the bundled helper
scripts/aidp_sql.py (it mints a UPST from the api_key DEFAULT profile, auto-creates a scratch notebook,
and returns JSON). No aidp MCP and no AIDP_SESSION required.
ai_generate('<model>', '<prompt>')
e.g. ai_generate('openai.gpt-5.4', 'Summarize this supplier spend: ...').
LIVE-VERIFIED model-first (model, prompt) signature with openai.gpt-5.4, openai.gpt-4o, and
xai.grok-4.
Verify before relying on it (no-fabrication): confirm the exact signature and the available model names live on the target cluster before treating this as guaranteed — run a trivial
SELECT ai_generate('<model>', 'hello')cell first (see smoke test below). Model availability varies by environment. If a model name fails, list/ask for the correct one rather than guessing.Don't gate on the
/modelsREST catalog.ai_generateresolves the model at the Spark engine level, so it can work even whenaidp-models-catalog'sGET /models?modelType=GENERATIVE_AIreturns an empty list. The smoke test (not the catalog endpoint) is the source of truth for whetherai_generateworks.
python "$PLUGIN_DIR/scripts/aidp_sql.py" \
--region <region> --datalake <DATALAKE_OCID> --workspace <ws> --cluster <cluster-key> \
--code "<python/spark code>"
Returns JSON: {"status":"ok|error","outputs":[...],"spark_job_ids":[...]}. Exit 0 on success, 1 on
cell error. See scripts/aidp_sql.py for full flags (--profile,
--session-profile, --notebook, --timeout).
python "$PLUGIN_DIR/scripts/aidp_sql.py" --region <region> --datalake <ocid> --workspace <ws> --cluster <key> \
--code "spark.sql(\"SELECT ai_generate('openai.gpt-5.4', 'hello')\").show(truncate=False)"
oci raw-request; see references/no-mcp-rest-map.md).ai_generate('<model>', '<grounded prompt>').
For per-row enrichment, call it as a column expression over a bounded set.Pass the cell to --code:
ctx = spark.sql("SELECT ... FROM gold.supplier_spend ...").toPandas().to_string()
res = spark.sql(f"SELECT ai_generate('openai.gpt-5.4', 'As a finance analyst, summarize: {ctx}') AS summary")
res.show(truncate=False)
ai_generate (cost + latency).aidp-analyzing-data原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。