CreateFaqModelMetadata

Metadata for creating an FAQ model.

JSON representation
{
  "createTime": string,
  "endTime": string,
  "request": {
    object (CreateFaqModelRequest)
  }
}
Fields
createTime

string (Timestamp format)

Output only. The time the operation was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

endTime

string (Timestamp format)

Output only. The time the operation finished running.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

request

object (CreateFaqModelRequest)

The original request for creation.

CreateFaqModelRequest

The request to create an FAQ model.

JSON representation
{
  "parent": string,
  "faqModel": {
    object (FaqModel)
  }
}
Fields
parent

string

Required. The parent resource of the FAQ model.

faqModel

object (FaqModel)

Required. The FAQ model to create.

FaqModel

The FAQ model resource.

JSON representation
{
  "name": string,
  "displayName": string,
  "createTime": string,
  "updateTime": string,
  "faqEntryCount": integer,
  "state": enum (State),
  "inputDataConfig": {
    object (InputDataConfig)
  },
  "modelTrainingStats": {
    object (ModelStats)
  },
  "infobotAgent": string
}
Fields
name

string

Immutable. The resource name of the FAQ model. Format: projects/{project}/locations/{location}/faqModels/{faqModel}

displayName

string

The representative name for the FAQ model.

createTime

string (Timestamp format)

Output only. The time at which this FAQ model was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The most recent time at which the FAQ model was updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

faqEntryCount

integer

Output only. Number of FAQ entries in this FAQ model.

state

enum (State)

Output only. State of the FAQ model.

inputDataConfig

object (InputDataConfig)

Configs for the input data used to create the FAQ model.

modelTrainingStats

object (ModelStats)

Output only. Immutable. The model statistics on its training data.

infobotAgent

string

Immutable. The resource name of the infobot agent to be used to create generative answers. Format: projects/{project}/locations/{location}/agents/{agent}

InputDataConfig

Configs for the input data used to create the FAQ model.

JSON representation
{
  "trainingConversationsCount": string,
  "filter": string
}
Fields
trainingConversationsCount

string (int64 format)

Output only. Number of conversations used in training. Output only.

filter

string

A filter to reduce the conversations used for training the model to a specific subset.

ModelStats

Train/inference statistics for the model.

JSON representation
{
  "totalConversationsCount": integer,
  "skippedConversationsCount": integer
}
Fields
totalConversationsCount

integer

Total number of conversations analyzed at this point in time.

skippedConversationsCount

integer

Number of analyzed conversations which were skipped e.g. customer disconnected from the call.