I want to use the Google Assistant SDK to make a Google Assistant desktop app for Windows. I want to access the SDK using python, and pass input to the python command.
For example, you talk to Google Assistant using this Python command:
python -m googlesamples.assistant
If you have python installed you can run that in CMD, so either that or directly running the python command.
I have tried this:
string strCmdText;
strCmdText= "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);
but it says that System.Diagnostics.Process does not exist.
Can someone help with this?