mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 18:45:13 +00:00
95 lines
3.5 KiB
Text
95 lines
3.5 KiB
Text
NAME
|
|
gcloud alpha dialogflow agent query - send a text or audio conversational
|
|
query to the agent of the current project
|
|
|
|
SYNOPSIS
|
|
gcloud alpha dialogflow agent query
|
|
(--query-text=QUERY_TEXT | --audio-encoding=AUDIO_ENCODING
|
|
--query-audio-file=QUERY_AUDIO_FILE --sample-rate=SAMPLE_RATE)
|
|
[--language=LANGUAGE; default="en"]
|
|
[--session=SESSION; default="DEFAULT_SESSION"] [GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
(ALPHA) Send a text or audio conversational query to the agent of the
|
|
current project.
|
|
|
|
EXAMPLES
|
|
To query the agent of the current project with text:
|
|
|
|
$ gcloud alpha dialogflow agent query --query-text="hi"
|
|
|
|
To query the agent of the current project with text in session my-session:
|
|
|
|
$ gcloud alpha dialogflow agent query --session="my-session" \
|
|
--query-text="hi"
|
|
|
|
To query the agent of the current project with audio:
|
|
|
|
$ gcloud alpha dialogflow agent query \
|
|
--query-audio-file="path/to/audio_file.wav" \
|
|
--sample-rate="16000" \
|
|
--audio-encoding="AUDIO_ENCODING_LINEAR_16"
|
|
|
|
REQUIRED FLAGS
|
|
Exactly one of these must be specified:
|
|
|
|
--query-text=QUERY_TEXT
|
|
Conversational query in the form of text.
|
|
|
|
Audio file and config:
|
|
|
|
--audio-encoding=AUDIO_ENCODING
|
|
Encoding of the audio file.
|
|
|
|
See here for more information:
|
|
https://cloud.google.com/dialogflow-enterprise/docs/reference/rest/v2/projects.agent.sessions/detectIntent#AudioEncoding.
|
|
|
|
AUDIO_ENCODING must be one of: audio-encoding-amr,
|
|
audio-encoding-amr-wb, audio-encoding-flac,
|
|
audio-encoding-linear-16, audio-encoding-mulaw,
|
|
audio-encoding-ogg-opus, audio-encoding-speex-with-header-byte,
|
|
audio-encoding-unspecified.
|
|
|
|
This flag argument must be specified if any of the other arguments
|
|
in this group are specified.
|
|
|
|
--query-audio-file=QUERY_AUDIO_FILE
|
|
Path to an audio file to use as a conversational query.
|
|
|
|
This flag argument must be specified if any of the other arguments
|
|
in this group are specified.
|
|
|
|
--sample-rate=SAMPLE_RATE
|
|
Sample rate of the audio file in Hertz.
|
|
|
|
This flag argument must be specified if any of the other arguments
|
|
in this group are specified.
|
|
|
|
OPTIONAL FLAGS
|
|
--language=LANGUAGE; default="en"
|
|
The language code of the query. For information on supported languages,
|
|
see: https://dialogflow.com/docs/languages.
|
|
|
|
--session=SESSION; default="DEFAULT_SESSION"
|
|
ID of the session to send the query to. This can be any number or
|
|
string up to 36 bytes. By default, a different random ID will be used
|
|
for every request.
|
|
|
|
GCLOUD WIDE FLAGS
|
|
These flags are available to all commands: --access-token-file, --account,
|
|
--billing-project, --configuration, --flags-file, --flatten, --format,
|
|
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
|
--trace-token, --user-output-enabled, --verbosity.
|
|
|
|
Run $ gcloud help for details.
|
|
|
|
API REFERENCE
|
|
This command uses the dialogflow/v2 API. The full documentation for this
|
|
API can be found at: https://cloud.google.com/dialogflow/
|
|
|
|
NOTES
|
|
This command is currently in alpha and might change without notice. If this
|
|
command fails with API permission errors despite specifying the correct
|
|
project, you might be trying to access an API with an invitation-only early
|
|
access allowlist.
|
|
|