pub struct RemoteModelInfo {
pub connection: Option<String>,
pub endpoint: Option<String>,
pub max_batching_rows: Option<i64>,
pub remote_model_version: Option<String>,
pub remote_service_type: Option<String>,
pub speech_recognizer: Option<String>,
}Expand description
Remote Model Info
This type is not used in any activity, and only used as part of another schema.
Fields§
§connection: Option<String>Output only. Fully qualified name of the user-provided connection object of the remote model. Format: "projects/{project_id}/locations/{location_id}/connections/{connection_id}"
endpoint: Option<String>Output only. The endpoint for remote model.
max_batching_rows: Option<i64>Output only. Max number of rows in each batch sent to the remote service. If unset, the number of rows in each batch is set dynamically.
remote_model_version: Option<String>Output only. The model version for LLM.
remote_service_type: Option<String>Output only. The remote service type for remote model.
speech_recognizer: Option<String>Output only. The name of the speech recognizer to use for speech recognition. The expected format is projects/{project}/locations/{location}/recognizers/{recognizer}. Customers can specify this field at model creation. If not specified, a default recognizer projects/{model project}/locations/global/recognizers/_ will be used. See more details at recognizers
Trait Implementations§
Source§impl Clone for RemoteModelInfo
impl Clone for RemoteModelInfo
Source§fn clone(&self) -> RemoteModelInfo
fn clone(&self) -> RemoteModelInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more