Craft AI Modules Google
const { aiModules } = MODULES;Table of Contents
- aiModules
- GeminiGenerationConfig
- GeminiSafetySetting
- GeminiCandidate
- GeminiResponse
- GeminiStreamChunk
- RagOptions
- CraftExtra
- FunctionDeclaration
- StandardGeminiTools
- FunctionCallingConfig
- StandardGeminiToolConfig
- GeminiContentParams
- GeminiStreamParams
- FunctionCall
- FunctionResponse
- GeminiResultValue
- ContentPart
- Content
- StreamChunk
- ThinkingConfig
- GenerationConfig
- EmbeddingsResultValue
- MultiEmbedding
- MultiEmbeddingsResultValue
- TextEmbeddingInstance
- TextEmbeddingParameters
- RerankRecord
- RankedRecord
- RerankResultValue
aiModules
Standard AI modules for GCP services
gcpGeminiGenerateContent
Geminiにリクエストを送信する
Parameters
paramsGeminiContentParams パラメータ
Returns Promise<GeminiResultValue>
gcpGeminiGenerateContentStream
Geminiにストリーミングリクエストを送信する
Parameters
paramsGeminiStreamParams パラメータ
Returns Promise<void>
gcpEmbeddingsText
TextEmbeddingsにリクエストを送信する
Parameters
-
paramObjectparam.textstring テキストの内容 (deprecated, use instances instead)param.instancesArray<TextEmbeddingInstance>? インスタンスの配列param.parametersTextEmbeddingParameters? パラメータparam.modelstring? モデル名 (optional) - ‘text-multilingual-embedding-002’, ‘text-embedding-004’, ‘gemini-embedding-001’
Returns Promise<EmbeddingsResultValue>
gcpEmbeddingsMulti
MultiModalEmbeddingsにリクエストを送信する
Parameters
-
paramObject
- Throws Error failed. text or bytesBase64Encoded is required
Returns Promise<MultiEmbeddingsResultValue>
gcpRerank
GCP Rerank APIにリクエストを送信する
Parameters
-
paramObjectparam.querystring 検索クエリparam.recordsArray<RerankRecord> ランク付けするレコードの配列param.modelstring? モデル名(デフォルト: semantic-ranker-512@latest)。利用可能なモデル: semantic-ranker-512@latest, semantic-ranker-default-004, semantic-ranker-fast-004param.ignoreRecordDetailsInResponseboolean? レコードのタイトルとコンテンツも返さないか(デフォルト: true)param.topNnumber? 返される上位レコードの数(デフォルト: 10)
- Throws Error failed. query and records are required
Returns Promise<RerankResultValue>
GeminiGenerationConfig
Type: Object
Properties
-
maxOutputTokensnumber? 最大出力トークン数 -
temperaturenumber? 温度パラメータ (0-2) -
topPnumber? Top-p サンプリング -
responseMimeTypestring? レスポンスのMIMEタイプ -
responseSchemaObject? レスポンススキーマ -
thinkingConfigObject? Thinking mode設定
GeminiSafetySetting
Type: Object
Properties
category("HARM_CATEGORY_HARASSMENT"|"HARM_CATEGORY_HATE_SPEECH"|"HARM_CATEGORY_SEXUALLY_EXPLICIT"|"HARM_CATEGORY_DANGEROUS_CONTENT") 安全性カテゴリthreshold("BLOCK_NONE"|"BLOCK_ONLY_HIGH"|"BLOCK_MEDIUM_AND_ABOVE"|"BLOCK_LOW_AND_ABOVE") ブロック閾値
GeminiCandidate
Type: Object
Properties
GeminiResponse
Type: Object
Properties
-
candidatesArray<GeminiCandidate> 候補リスト -
usageMetadataObject 使用量メタデータ -
groundingMetadataObject? グラウンディングメタデータ
GeminiStreamChunk
Type: Object
Properties
deltaObject? デルタコンテンツfinishReasonstring? 終了理由groundingMetadataObject? グラウンディングメタデータusageMetadataObject? 使用量メタデータ(最終チャンク)
RagOptions
Type: Object
Properties
corpusIdstring RAG IDvectorDistanceThresholdnumber? ベクトル距離の閾値llmRankerModelstring? LLMランカーのモデル名rankServiceModelstring? ランクサービスのモデル名topKnumber? トップK
CraftExtra
Type: Object
Properties
ragOptionsRagOptions? RAGオプション
FunctionDeclaration
Type: Object
Properties
StandardGeminiTools
Type: Object
Properties
functionDeclarationsArray<FunctionDeclaration>? Function calling宣言
FunctionCallingConfig
Type: Object
Properties
mode("AUTO"|"ANY"|"NONE")? Function calling modeallowedFunctionNamesArray<string>? 許可する関数名のリスト
StandardGeminiToolConfig
Type: Object
Properties
functionCallingConfigFunctionCallingConfig? Function calling設定
GeminiContentParams
Type: Object
Properties
modelstring モデル(必須) 利用可能なモデル:* ‘gemini-2.5-flash’: Gemini 2.5 Flash- ’gemini-2.5-flash-lite’: Gemini 2.5 Flash Lite
- ’gemini-2.5-pro’: Gemini 2.5 Pro
contentsArray<Object> コンテンツ配列systemInstructionstring? システムインストラクションgenerationConfigGeminiGenerationConfig? 生成設定safetySettingsArray<GeminiSafetySetting>? 安全性設定toolsStandardGeminiTools? ツール設定(Function callingのみ)toolConfigStandardGeminiToolConfig? ツール設定(Function calling設定のみ)craftExtraCraftExtra? Craft固有の追加設定(RAGオプションなど)
GeminiStreamParams
Extends GeminiContentParams
Type: Object
FunctionCall
Type: Object
Properties
FunctionResponse
Type: Object
Properties
GeminiResultValue
Type: Object
Properties
-
usageMetadataObject 使用量メタデータ -
-
candidates[].contentObject 回答の内容candidates[].content.rolestring 役割candidates[].content.partsArray<Object> 回答の部分candidates[].content.partsstring [].text - 回答のテキストcandidates[].content.partsFunctionCall [].functionCall - functionCallcandidates[].content.partsFunctionResponse [].functionResponse - functionResponse
-
candidates[].finishReasonstring 回答終了理由
-
ContentPart
Type: Object
Properties
Content
Type: Object
Properties
rolestring 役割partsArray<ContentPart> コンテンツの部分
StreamChunk
Type: Object
Properties
ThinkingConfig
Type: Object
Properties
GenerationConfig
Type: Object
Properties
maxOutputTokensnumber? 最大出力トークン数temperaturenumber? 生成時の多様性を制御するパラメータtopPnumber? 確率の高いトークンから選択する閾値responseMimeTypestring? レスポンスタイプresponseSchemaObject? レスポンス構造を定義するスキーマthinkingConfigThinkingConfig? 思考処理の設定
EmbeddingsResultValue
Type: Object
Properties
MultiEmbedding
Type: Object
Properties
textEmbeddingArray<number>? The text embedding array.imageEmbeddingArray<number>? The image embedding array.
MultiEmbeddingsResultValue
Type: Object
Properties
predictionsArray<MultiEmbedding> An array of embedding objects.
TextEmbeddingInstance
Type: Object
Properties
contentstring コンテンツtitlestring? タイトル (optional) - RETRIEVAL_DOCUMENTタスクタイプでのみ使用可能task_typestring? タスクタイプ (optional) - 以下の値が使用可能。デフォルトは ‘RETRIEVAL_QUERY’:* ‘RETRIEVAL_QUERY’: 検索クエリ用- ’RETRIEVAL_DOCUMENT’: 検索対象のドキュメント用
- ’SEMANTIC_SIMILARITY’: 意味的類似性の比較用
- ’CLASSIFICATION’: 分類タスク用
- ’CLUSTERING’: クラスタリングタスク用
- ’QUESTION_ANSWERING’: 質問応答システム用
- ’FACT_VERIFICATION’: 事実検証用
- ’CODE_RETRIEVAL_QUERY’: コード検索クエリ用
TextEmbeddingParameters
Type: Object
Properties
RerankRecord
Type: Object
Properties
RankedRecord
Type: Object
Properties
idstring レコードのIDtitlestring? レコードのタイトル。ignoreRecordDetailsInResponse が true の場合は省略される。contentstring? レコードのコンテンツ。ignoreRecordDetailsInResponse が true の場合は省略される。scorenumber ランキングスコア
RerankResultValue
Type: Object
Properties
recordsArray<RankedRecord> ランク付けされたレコードの配列