Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/spelling_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1154,6 +1154,7 @@ mssql
mTLS
mtls
muldelete
multimodal
Multinamespace
mutex
mv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class TextEmbeddingModelGetEmbeddingsOperator(GoogleCloudBaseOperator):
:param location: Required. The ID of the Google Cloud location that the
service belongs to (templated).
:param prompt: Required. Inputs or queries that a user or a program gives
to the Vertex AI PaLM API, in order to elicit a specific response (templated).
to the Vertex AI Generative Model API, in order to elicit a specific response (templated).
:param pretrained_model: Required. Model, optimized for performing text embeddings.
:param gcp_conn_id: The connection ID to use connecting to Google Cloud.
:param impersonation_chain: Optional service account to impersonate using short-term
Expand Down Expand Up @@ -112,10 +112,9 @@ class GenerativeModelGenerateContentOperator(GoogleCloudBaseOperator):
:param safety_settings: Optional. Per request settings for blocking unsafe content.
:param tools: Optional. A list of tools available to the model during evaluation, such as a data store.
:param system_instruction: Optional. An instruction given to the model to guide its behavior.
:param pretrained_model: Required. Model,
supporting prompts with text-only input, including natural language
tasks, multi-turn text and code chat, and code generation. It can
output text and code.
:param pretrained_model: Required. The name of the model to use for content generation,
which can be a text-only or multimodal model. For example, `gemini-pro` or
`gemini-pro-vision`.
:param gcp_conn_id: The connection ID to use connecting to Google Cloud.
:param impersonation_chain: Optional service account to impersonate using short-term
credentials, or chained list of accounts required to get the access_token
Expand Down