C++ Client Libraries for Dialogflow #9499
DrFrederick
started this conversation in
General
Replies: 1 comment 7 replies
-
You are reusing a
https://grpc.github.io/grpc/cpp/classgrpc_1_1_client_context.html#details Consider using the C++ client libraries (you are using what we would call the generated gRPC stubs). Good starting points may be: https://github.com/googleapis/google-cloud-cpp/blob/main/google/cloud/dialogflow_cx/quickstart/README.md |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am intended to write a code for voice analytic using Google Cloud CPP Dialogflow. Hence I am writing a piece of code to test the CreateConversation() and CreateParticipant().
When testing I found CreateConversation() is working but the CreateParticipant() is throwing error.
At this juncture I am not able to identify where is my mistake. I am keen on looking for someone's help to solve this issues.
Here is my source code
ClientConversation.txt
Here is the output
admin@ip-172-31-7-209:~/gcloudagent/build$ ./gcloudagent
Main Start!
Google Credentials : /home/admin/pratheepagentassist-e385115eac3d.json
Profile : projects/pratheepagentassist/conversationProfiles/D7ILDLMdSe63ud_nOkFtUA
Stage : 2
Name : projects/pratheepagentassist/conversations/119gKpF0rQcSkSE3ijs79JLfw
Parent : projects/pratheepagentassist/conversations/119gKpF0rQcSkSE3ijs79JLfw
Before CreateParticipant() !
E0718 03:59:11.057965025 21520 client_context.cc:115] assertion failed: call_ == nullptr
Aborted
admin@ip-172-31-7-209:~/gcloudagent/build$
Beta Was this translation helpful? Give feedback.
All reactions