gpt4 book ai didi

raspberry-pi3 - 使用脚本而不是麦克风向谷歌助手发送命令

转载 作者:行者123 更新时间:2023-12-04 11:31:30 28 4
gpt4 key购买 nike

我已经在 Raspberry Pi 3 中配置了 Google Assistant SDK,并且演示应用程序运行良好。有没有办法使用 Python 脚本将“OK Google,示例命令”发送到 Google Assistant SDK?或者它只会接受来自 Mic 的输入?

我打算编写一个微型移动应用程序,它将向我的 Raspberry Pi 谷歌助手应用程序发送命令。

最佳答案

更新:即使这是一个老问题,这里也是最新的更新。

现在可以使用 v1alpha2 版本。 gRPC 消息 AssistConfig被定义为一个联合,您可以在其中选择音频输出配置或文本查询。

如果您使用的是 python 库,请参阅 AssistConfig .这是使用文本查询的配置示例(改编自 pushtotalk.py sample, line 183 ):

config = embedded_assistant_pb2.AssistConfig(
# instead of audio_in_config
# note: no need to use 'OK google'
text_query = "who are you ?",
audio_out_config=embedded_assistant_pb2.AudioOutConfig(
encoding='LINEAR16',
sample_rate_hertz=self.conversation_stream.sample_rate,
volume_percentage=self.conversation_stream.volume_percentage,
),
dialog_state_in=dialog_state_in,
device_config=embedded_assistant_pb2.DeviceConfig(
device_id=self.device_id,
device_model_id=self.device_model_id,
)
)

如果您正在使用 golang , here is the link to the godoc .

关于raspberry-pi3 - 使用脚本而不是麦克风向谷歌助手发送命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45457906/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com