我尝试按照以下说明-https://developers.google.com/assistant/sdk/guides/service/python/-并使用GassistPi在树莓派pi3 b +上安装Google助手。
在两种情况下,我运行命令
googlesamples-assistant-hotword --project-id 'my-project-id' --device-model-id 'my-device-modelt-id'
或
'my-project-id'
(其中,我用'my-device-modelt-id'
和googlesamples-assistant-pushtotalk --project-id 'my-project-id' --device-model-id 'my-device-modelt-id'
替换了以前报告的网站获得的数据)得到“分段错误”。
我运行function get_author_name() {
register_rest_field( 'post',
'author_name',
array(
'get_callback' => 'get_author_name'
)
);
}
function get_author_name( $object ) {
return the_author_meta( 'user_nicename' , $object['author'] );
}
add_filter( 'rest_prepare_post', 'get_author_name', 10, 3 );
命令时不会发生此错误。
我尝试在线搜索解决方案,但是没有找到解决我的问题的建议(还有升级库)。有人可以帮助我解决这种细分错误吗?
答案 0 :(得分:0)
您启用了https://console.developers.google.com表单吗?
启用API,然后复制项目ID和设备型号ID,然后使用:
google-assistant-demo --project-id :“在此处输入您的项目ID”
device-model-id :“在此处输入您的devicemodel ID”