You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default Assistant gRPC API endpoint is embeddedassistant.googleapis.com. If you want to test with a custom Assistant gRPC API endpoint, you can pass an extra "--api_endpoint CUSTOM_API_ENDPOINT" to run_assistant.
116
+
Default Assistant gRPC API endpoint is `embeddedassistant.googleapis.com`. If you want to test with a custom Assistant gRPC API endpoint, you can pass `--api_endpoint CUSTOM_API_ENDPOINT`.
117
+
118
+
## Enabling screen output
119
+
120
+
To get a visual output from the Assistant, provide a command to be run alongside every step of the conversation. It will execute that command along along with a provided argument of a temporary HTML file.
121
+
122
+
```bash
123
+
echo"what time is it"| ./run_assistant_text --credentials ./credentials.json --html_out google-chrome
124
+
```
125
+
126
+
After you enter text, it will run `google-chrome /tmp/google-assistant-cpp-screen-out.html`.
127
+
128
+
If you prefer a different program, use that argument instead.
0 commit comments