Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3572,7 +3572,6 @@ libraries:
- tests/system/__init__.py
- tests/system/smoke_test.py
- tests/unit/test_helpers.py
skip_generate: true
python:
library_type: GAPIC_COMBO
name_pretty_override: Cloud Speech
Expand Down
29 changes: 14 additions & 15 deletions packages/google-cloud-speech/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"api_description": "enables easy integration of Google speech recognition technologies into developer applications. Send audio and receive a text transcription from the Speech-to-Text API service.",
"api_id": "speech.googleapis.com",
"api_shortname": "speech",
"client_documentation": "https://cloud.google.com/python/docs/reference/speech/latest",
"default_version": "v1",
"distribution_name": "google-cloud-speech",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559758",
"language": "python",
"library_type": "GAPIC_COMBO",
"name": "speech",
"name_pretty": "Cloud Speech",
"product_documentation": "https://cloud.google.com/speech-to-text/docs/",
"release_level": "stable",
"repo": "googleapis/google-cloud-python",
"requires_billing": false
"api_description": "enables easy integration of Google speech recognition technologies into developer applications. Send audio and receive a text transcription from the Speech-to-Text API service.",
"api_id": "speech.googleapis.com",
"api_shortname": "speech",
"client_documentation": "https://cloud.google.com/python/docs/reference/speech/latest",
"default_version": "v1",
"distribution_name": "google-cloud-speech",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559758",
"language": "python",
"library_type": "GAPIC_COMBO",
"name": "speech",
"name_pretty": "Cloud Speech",
"product_documentation": "https://cloud.google.com/speech-to-text/docs/",
"release_level": "stable",
"repo": "googleapis/google-cloud-python"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
__version__ = package_version.__version__


from google.cloud.speech_v1 import SpeechClient
from google.cloud.speech_v1.services.adaptation.async_client import (
AdaptationAsyncClient,
)
from google.cloud.speech_v1.services.adaptation.client import AdaptationClient
from google.cloud.speech_v1.services.speech.async_client import SpeechAsyncClient
from google.cloud.speech_v1 import SpeechClient
from google.cloud.speech_v1.types.cloud_speech import (
LongRunningRecognizeMetadata,
LongRunningRecognizeRequest,
Expand Down
Loading