我正在尝试使用 c++ 构建一个谷歌助手客户端。我已通过身份验证并创建了频道;然后正如文档所说:“发送 ConverseRequest 消息......”,并停留在这里,因为 Converse 只有一个参数:ClientContext,ConverseRequest 如何转换为 ClientContext?
我的代码段:
ConverseConfig config;
config.set_allocated_audio_in_config(&audio_in_config);
config.set_allocated_audio_out_config(&audio_out_config);
ConverseRequest request;
request.set_allocated_config(&config);
ClientContext context;
//context.AddMetadata(request.GetMetadata());
ConverseResponse *response = stub_->Converse(&context);
或者一些正确的代码示例将不胜感激!