MultimodalDatasetMetadata

The metadata of Multimodal Datasets.

Fields
inputConfig object (MultimodalDatasetInputConfig)

Specifies the input source and configuration.

geminiRequestReadConfig object (GeminiRequestReadConfig)

The configuration for how to read Gemini requests from the dataset.

keyColumnName string

The name of the column in the BigQuery table that contains the keys of the rows.

JSON representation
{
  "inputConfig": {
    object (MultimodalDatasetInputConfig)
  },
  "geminiRequestReadConfig": {
    object (GeminiRequestReadConfig)
  },
  "keyColumnName": string
}

MultimodalDatasetInputConfig

Specifies the input source and configuration.

Fields
source Union type
The source of the input. We only support BigQuery as source for now. source can be only one of the following:
bigquerySource object (BigQuerySource)

BigQuery source table.

JSON representation
{

  // source
  "bigquerySource": {
    object (BigQuerySource)
  }
  // Union type
}

BigQuerySource

Specifies the BigQuery source.

Fields
uri string

The URI of a BigQuery table. e.g. bq://project.bqDataset.bqTable

JSON representation
{
  "uri": string
}