Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit edf5598

Browse files
author
Nick Cook
committed
Updated links and SDK component naming
Change-Id: Ia07942307b8b8c7995f795022006675d40707dcb
1 parent 69bc685 commit edf5598

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
This repository contains the [Python][python] packages for the [Google Assistant SDK][google-assistant-sdk].
44

55
To get started, see the following developer guides:
6-
- [Getting Started with Raspberry Pi 3 and Python][getting-started-rpi3-python].
7-
- [Getting Started with other platforms][getting-started-other-platforms].
6+
- [Introduction to the Google Assistant Library][getting-started-rpi3-python].
7+
- [Introduction to the Google Assistant Service][getting-started-other-platforms].
88

99
## Content
1010

1111
- [google-assistant-library](google-assistant-library): Python bindings for the [Google Assistant Library][google-assistant-library]
12-
- [google-assistant-grpc](google-assistant-grpc): autogenerated Python bindings to communicate with the [Google Assistant gRPC API][google-assistant-api]
12+
- [google-assistant-grpc](google-assistant-grpc): autogenerated Python bindings to communicate with the [Google Assistant Service][google-assistant-api]
1313
- [google-assistant-sdk](google-assistant-sdk): tools and python samples to help developers get started with the
1414
[Google Assistant SDK][google-assistant-sdk]
15-
- [googlesamples/assistant/grpc](google-assistant-sdk/googlesamples/assistant/grpc): reference sample for the [Google Assistant gRPC API][google-assistant-api]
15+
- [googlesamples/assistant/grpc](google-assistant-sdk/googlesamples/assistant/grpc): reference sample for the [Google Assistant Service][google-assistant-api]
1616
- [googlesamples/assistant/library](google-assistant-sdk/googlesamples/assistant/library): reference sample for the [Google Assistant library][google-assistant-library]
1717

1818
## Contributing
@@ -44,6 +44,6 @@ the License.
4444
[google-assistant-library]: https://developers.google.com/assistant/sdk/reference/library/python
4545
[google-assistant-api]: https://developers.google.com/assistant/sdk/reference/rpc
4646
[google-assistant-library]: https://developers.google.com/assistant/sdk/reference/library/python
47-
[google-assistant-sdk]: https://developer.google.com/assistant/sdk
48-
[getting-started-rpi3-python]: https://developers.google.com/assistant/sdk/prototype/getting-started-pi-python/
49-
[getting-started-other-platforms]: https://developers.google.com/assistant/sdk/prototype/getting-started-other-platforms/
47+
[google-assistant-sdk]: https://developers.google.com/assistant/sdk
48+
[getting-started-rpi3-python]: https://developers.google.com/assistant/sdk/guides/library/python/
49+
[getting-started-other-platforms]: https://developers.google.com/assistant/sdk/guides/service/python/

google-assistant-grpc/README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
Google Assistant gRPC API Bindings for Python
1+
Google Assistant Service Bindings for Python
22
=============================================
33

4-
This package contains the generated Python_ bindings for the `Google Assistant gRPC API`_.
4+
This package contains the generated Python_ bindings for the `Google Assistant Service`_.
55
It is part of the `Google Assistant SDK`_.
66

77
This package should be compatible with POSIX platforms supporting gRPC_ and Python_.
88

99
.. _Python: https://www.python.org/
1010
.. _gRPC: https://www.grpc.io
11-
.. _Google Assistant gRPC API: https://developers.google.com/assistant/sdk/reference/rpc/
11+
.. _Google Assistant Service: https://developers.google.com/assistant/sdk/guides/service/python/
1212
.. _Google Assistant SDK: https://developers.google.com/assistant/sdk
1313

1414
Installing
@@ -21,7 +21,7 @@ Installing
2121
Authorization
2222
-------------
2323

24-
- `Follow the steps <https://developers.google.com/assistant/sdk/prototype/getting-started-other-platforms/config-dev-project-and-account>`_ to configure a Google API Console Project and a Google account to use with the Google Assistant SDK.
24+
- `Follow the steps <https://developers.google.com/assistant/sdk/guides/service/python/embed/config-dev-project-and-account>`_ to configure a Google API Console Project and a Google account to use with the Google Assistant SDK.
2525

2626
- Download the ``client_secret_XXXXX.json`` file from the `Google API Console Project credentials section <https://console.developers.google.com/apis/credentials>`_ and generate credentials using ``google-oauth-tool``.::
2727

@@ -98,7 +98,7 @@ Reference
9898
---------
9999

100100
- `gRPC reference sample <https://github.com/googlesamples/assistant-sdk-python/tree/master/google-assistant-sdk/googlesamples/assistant/grpc>`_.
101-
- `Google Assistant gRPC API reference <https://developers.google.com/assistant/sdk/reference/rpc/>`_.
101+
- `Google Assistant Service reference <https://developers.google.com/assistant/sdk/reference/rpc/>`_.
102102

103103
For Maintainers
104104
---------------

google-assistant-library/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It includes the following features:
1414
- Volume ducking and control
1515
- Conversation state management
1616

17-
See `Getting Started with the Raspberry Pi and Python`_ for a step by step guide on how to get started with the library on Raspberry Pi 3.
17+
See `Introduction to the Google Assistant Library`_ for a step by step guide on how to get started with the library on the Raspberry Pi 3.
1818

1919
Supported configuration
2020
-----------------------
@@ -63,10 +63,10 @@ See `LICENSE`_ and `LICENSE.third_party`_.
6363
.. _Python: https://www.python.org/
6464
.. _Google Assistant Library: https://developers.google.com/assistant/sdk/reference/library/python
6565
.. _Google Assistant SDK: https://developers.google.com/assistant/sdk
66-
.. _Getting Started with the Raspberry Pi and Python: https://developers.google.com/assistant/sdk/prototype/getting-started-pi-python/
66+
.. _Introduction to the Google Assistant Library: https://developers.google.com/assistant/sdk/guides/library/python/
6767
.. _pip: https://pip.pypa.io/
6868
.. _GitHub releases page: https://github.com/googlesamples/assistant-sdk-python/releases
69-
.. _Follow the steps: https://developers.google.com/assistant/sdk/prototype/getting-started-other-platforms/config-dev-project-and-account
69+
.. _Follow the steps: https://developers.google.com/assistant/sdk/guides/library/python/embed/config-dev-project-and-account
7070
.. _Google API Console Project credentials section: https://console.developers.google.com/apis/credentials
7171
.. _LICENSE: https://github.com/googlesamples/assistant-sdk-python/tree/master/google-assistant-library/LICENSE
7272
.. _LICENSE.third_party: https://github.com/googlesamples/assistant-sdk-python/tree/master/google-assistant-library/LICENSE.third_party

google-assistant-sdk/README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ google-oauthlib-tool
2020
This tool creates test credentials to authorize devices to call the
2121
Google Assistant API when prototyping.
2222

23-
- `Follow the steps <https://developers.google.com/assistant/sdk/develop/grpc/config-dev-project-and-account>`_ to configure a Google API Console Project and a Google account to use with the Google Assistant SDK.
23+
- `Follow the steps <https://developers.google.com/assistant/sdk/guides/configure-developer-project>`_ to configure a Google API Console Project and a Google account to use with the Google Assistant SDK.
2424

2525
- Download the ``client_secret_XXXXX.json`` file from the `Google API Console Project credentials section <https://console.developers.google.com/apis/credentials>`_ in the current directory.
2626

@@ -106,7 +106,7 @@ instances and associate them with Device Actions traits.
106106
googlesamples-assistant-pushtotalk
107107
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108108

109-
This reference sample implements a simple but functional client for the `Google Assistant gRPC API`_.
109+
This reference sample implements a simple but functional client for the `Google Assistant Service`_.
110110

111111
- Install the sample's dependencies::
112112

@@ -128,7 +128,7 @@ This reference sample implements a simple but functional client for the `Google
128128
googlesamples-assistant-hotword
129129
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
130130

131-
This reference sample implements a simple but functional client for the `Google Assistant library`_ (``linux_arm7l`` and ``linux_x86_64``).
131+
This reference sample implements a simple but functional client for the `Google Assistant Library`_ (``linux_arm7l`` and ``linux_x86_64``).
132132

133133
- Install the ``google-assistant-library`` package::
134134

@@ -175,5 +175,5 @@ the License.
175175
.. _Python: https://python.org/
176176
.. _pip: https://pip.pypa.io/
177177
.. _Google Assistant SDK: https://developers.google.com/assistant/sdk
178-
.. _Google Assistant gRPC API: https://developers.google.com/assistant/sdk/reference/rpc
179-
.. _Google Assistant library: https://developers.google.com/assistant/sdk/reference/library/python
178+
.. _Google Assistant Service: https://developers.google.com/assistant/sdk/reference/rpc
179+
.. _Google Assistant Library: https://developers.google.com/assistant/sdk/reference/library/python

0 commit comments

Comments
 (0)