Update RivaSegmentedSTTService
This commit is contained in:
@@ -16,8 +16,12 @@ from pipecat.pipeline.runner import PipelineRunner
|
|||||||
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
||||||
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
|
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
|
||||||
from pipecat.services.nim.llm import NimLLMService
|
from pipecat.services.nim.llm import NimLLMService
|
||||||
from pipecat.services.riva.stt import ParakeetSTTService, RivaOfflineSTTService
|
from pipecat.services.riva.stt import (
|
||||||
from pipecat.services.riva.tts import RivaTTSService, FastPitchTTSService
|
ParakeetSTTService,
|
||||||
|
RivaSegmentedSTTService,
|
||||||
|
RivaSTTService,
|
||||||
|
)
|
||||||
|
from pipecat.services.riva.tts import FastPitchTTSService, RivaTTSService
|
||||||
from pipecat.transports.base_transport import TransportParams
|
from pipecat.transports.base_transport import TransportParams
|
||||||
from pipecat.transports.network.small_webrtc import SmallWebRTCTransport
|
from pipecat.transports.network.small_webrtc import SmallWebRTCTransport
|
||||||
from pipecat.transports.network.webrtc_connection import SmallWebRTCConnection
|
from pipecat.transports.network.webrtc_connection import SmallWebRTCConnection
|
||||||
@@ -37,7 +41,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection, _: argparse.Namespac
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
stt = RivaOfflineSTTService(api_key=os.getenv("NVIDIA_API_KEY"))
|
stt = RivaSegmentedSTTService(api_key=os.getenv("NVIDIA_API_KEY"))
|
||||||
# stt = ParakeetSTTService(api_key=os.getenv("NVIDIA_API_KEY"))
|
# stt = ParakeetSTTService(api_key=os.getenv("NVIDIA_API_KEY"))
|
||||||
|
|
||||||
llm = NimLLMService(api_key=os.getenv("NVIDIA_API_KEY"), model="meta/llama-3.1-405b-instruct")
|
llm = NimLLMService(api_key=os.getenv("NVIDIA_API_KEY"), model="meta/llama-3.1-405b-instruct")
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
from typing import AsyncGenerator, Optional
|
from typing import AsyncGenerator, List, Optional
|
||||||
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
@@ -19,8 +19,7 @@ from pipecat.frames.frames import (
|
|||||||
StartFrame,
|
StartFrame,
|
||||||
TranscriptionFrame,
|
TranscriptionFrame,
|
||||||
)
|
)
|
||||||
from pipecat.services.stt_service import SegmentedSTTService
|
from pipecat.services.stt_service import SegmentedSTTService, STTService
|
||||||
from pipecat.services.stt_service import STTService
|
|
||||||
from pipecat.transcriptions.language import Language
|
from pipecat.transcriptions.language import Language
|
||||||
from pipecat.utils.time import time_now_iso8601
|
from pipecat.utils.time import time_now_iso8601
|
||||||
|
|
||||||
@@ -29,10 +28,62 @@ try:
|
|||||||
|
|
||||||
except ModuleNotFoundError as e:
|
except ModuleNotFoundError as e:
|
||||||
logger.error(f"Exception: {e}")
|
logger.error(f"Exception: {e}")
|
||||||
logger.error("In order to use NVIDIA Riva STT, you need to `pip install pipecat-ai[riva]`. Also set NVIDIA_API_KEY env var.")
|
logger.error("In order to use NVIDIA Riva STT, you need to `pip install pipecat-ai[riva]`.")
|
||||||
raise Exception(f"Missing module: {e}")
|
raise Exception(f"Missing module: {e}")
|
||||||
|
|
||||||
|
|
||||||
|
def language_to_riva_language(language: Language) -> Optional[str]:
|
||||||
|
"""Maps Language enum to Riva ASR language codes.
|
||||||
|
|
||||||
|
Source:
|
||||||
|
https://docs.nvidia.com/deeplearning/riva/user-guide/docs/asr/asr-riva-build-table.html?highlight=fr%20fr
|
||||||
|
|
||||||
|
Args:
|
||||||
|
language: Language enum value.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Optional[str]: Riva language code or None if not supported.
|
||||||
|
"""
|
||||||
|
language_map = {
|
||||||
|
# Arabic
|
||||||
|
Language.AR: "ar-AR",
|
||||||
|
# English
|
||||||
|
Language.EN: "en-US", # Default to US
|
||||||
|
Language.EN_US: "en-US",
|
||||||
|
Language.EN_GB: "en-GB",
|
||||||
|
# French
|
||||||
|
Language.FR: "fr-FR",
|
||||||
|
Language.FR_FR: "fr-FR",
|
||||||
|
# German
|
||||||
|
Language.DE: "de-DE",
|
||||||
|
Language.DE_DE: "de-DE",
|
||||||
|
# Hindi
|
||||||
|
Language.HI: "hi-IN",
|
||||||
|
Language.HI_IN: "hi-IN",
|
||||||
|
# Italian
|
||||||
|
Language.IT: "it-IT",
|
||||||
|
Language.IT_IT: "it-IT",
|
||||||
|
# Japanese
|
||||||
|
Language.JA: "ja-JP",
|
||||||
|
Language.JA_JP: "ja-JP",
|
||||||
|
# Korean
|
||||||
|
Language.KO: "ko-KR",
|
||||||
|
Language.KO_KR: "ko-KR",
|
||||||
|
# Portuguese
|
||||||
|
Language.PT: "pt-BR", # Default to Brazilian
|
||||||
|
Language.PT_BR: "pt-BR",
|
||||||
|
# Russian
|
||||||
|
Language.RU: "ru-RU",
|
||||||
|
Language.RU_RU: "ru-RU",
|
||||||
|
# Spanish
|
||||||
|
Language.ES: "es-ES", # Default to Spain
|
||||||
|
Language.ES_ES: "es-ES",
|
||||||
|
Language.ES_US: "es-US", # US Spanish
|
||||||
|
}
|
||||||
|
|
||||||
|
return language_map.get(language)
|
||||||
|
|
||||||
|
|
||||||
class RivaSTTService(STTService):
|
class RivaSTTService(STTService):
|
||||||
class InputParams(BaseModel):
|
class InputParams(BaseModel):
|
||||||
language: Optional[Language] = Language.EN_US
|
language: Optional[Language] = Language.EN_US
|
||||||
@@ -200,38 +251,38 @@ class RivaSTTService(STTService):
|
|||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return self
|
return self
|
||||||
|
|
||||||
class RivaOfflineSTTService(SegmentedSTTService):
|
|
||||||
"""Speech-to-text service using Fal's Wizper API.
|
|
||||||
|
|
||||||
This service uses Fal's Wizper API to perform speech-to-text transcription on audio
|
class RivaSegmentedSTTService(SegmentedSTTService):
|
||||||
segments. It inherits from SegmentedSTTService to handle audio buffering and speech detection.
|
"""Speech-to-text service using NVIDIA Riva Canary ASR API.
|
||||||
|
|
||||||
|
This service uses NVIDIA's Riva Canary ASR API to perform speech-to-text
|
||||||
|
transcription on audio segments. It inherits from SegmentedSTTService to handle
|
||||||
|
audio buffering and speech detection.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
api_key: NVIDIA_API_KEY.
|
api_key: NVIDIA API key for authentication
|
||||||
sample_rate: Audio sample rate in Hz. If not provided, uses the pipeline's rate.
|
server: Riva server address (defaults to NVIDIA Cloud Function endpoint)
|
||||||
params: Configuration parameters for Riva.
|
function_id: NVIDIA Cloud Function ID for the Canary ASR service
|
||||||
**kwargs: Additional arguments passed to SegmentedSTTService.
|
model_name: Name of the Canary ASR model to use
|
||||||
|
sample_rate: Audio sample rate in Hz. If not provided, uses the pipeline's rate
|
||||||
|
params: Additional configuration parameters for Riva
|
||||||
|
**kwargs: Additional arguments passed to SegmentedSTTService
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class InputParams(BaseModel):
|
class InputParams(BaseModel):
|
||||||
"""Configuration parameters for Fal's Wizper API.
|
"""Configuration parameters for Riva Canary ASR API."""
|
||||||
|
|
||||||
Attributes:
|
language: Optional[Language] = Language.EN_US
|
||||||
language: Language of the audio input. Defaults to English.
|
profanity_filter: bool = False
|
||||||
task: Task to perform ('transcribe' or 'translate'). Defaults to 'transcribe'.
|
automatic_punctuation: bool = True
|
||||||
chunk_level: Level of chunking ('segment'). Defaults to 'segment'.
|
verbatim_transcripts: bool = False
|
||||||
version: Version of Wizper model to use. Defaults to '3'.
|
boosted_lm_words: Optional[List[str]] = None
|
||||||
"""
|
boosted_lm_score: float = 4.0
|
||||||
|
|
||||||
language: Optional[Language] = Language.EN
|
|
||||||
task: str = "transcribe"
|
|
||||||
chunk_level: str = "segment"
|
|
||||||
version: str = "3"
|
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
*,
|
*,
|
||||||
api_key: str = None,
|
api_key: str,
|
||||||
server: str = "grpc.nvcf.nvidia.com:443",
|
server: str = "grpc.nvcf.nvidia.com:443",
|
||||||
function_id: str = "ee8dc628-76de-4acc-8595-1836e7e857bd",
|
function_id: str = "ee8dc628-76de-4acc-8595-1836e7e857bd",
|
||||||
model_name: str = "canary-1b-asr",
|
model_name: str = "canary-1b-asr",
|
||||||
@@ -240,13 +291,27 @@ class RivaOfflineSTTService(SegmentedSTTService):
|
|||||||
**kwargs,
|
**kwargs,
|
||||||
):
|
):
|
||||||
super().__init__(sample_rate=sample_rate, **kwargs)
|
super().__init__(sample_rate=sample_rate, **kwargs)
|
||||||
|
|
||||||
|
# Set model name
|
||||||
|
self.set_model_name(model_name)
|
||||||
|
|
||||||
|
# Initialize Riva settings
|
||||||
self._api_key = api_key
|
self._api_key = api_key
|
||||||
self._profanity_filter = False
|
self._server = server
|
||||||
self._automatic_punctuation = False
|
self._function_id = function_id
|
||||||
self._no_verbatim_transcripts = False
|
|
||||||
self._language_code = params.language
|
# Store the language as a Language enum and as a string
|
||||||
self._boosted_lm_words = None
|
self._language_enum = params.language or Language.EN_US
|
||||||
self._boosted_lm_score = 4.0
|
self._language = self.language_to_service_language(self._language_enum) or "en-US"
|
||||||
|
|
||||||
|
# Configure transcription parameters
|
||||||
|
self._profanity_filter = params.profanity_filter
|
||||||
|
self._automatic_punctuation = params.automatic_punctuation
|
||||||
|
self._verbatim_transcripts = params.verbatim_transcripts
|
||||||
|
self._boosted_lm_words = params.boosted_lm_words
|
||||||
|
self._boosted_lm_score = params.boosted_lm_score
|
||||||
|
|
||||||
|
# Voice activity detection thresholds (use Riva defaults)
|
||||||
self._start_history = -1
|
self._start_history = -1
|
||||||
self._start_threshold = -1.0
|
self._start_threshold = -1.0
|
||||||
self._stop_history = -1
|
self._stop_history = -1
|
||||||
@@ -255,50 +320,50 @@ class RivaOfflineSTTService(SegmentedSTTService):
|
|||||||
self._stop_threshold_eou = -1.0
|
self._stop_threshold_eou = -1.0
|
||||||
self._custom_configuration = ""
|
self._custom_configuration = ""
|
||||||
|
|
||||||
self.set_model_name(model_name)
|
# Create Riva client
|
||||||
|
|
||||||
metadata = [
|
|
||||||
["function-id", function_id],
|
|
||||||
["authorization", f"Bearer {api_key}"],
|
|
||||||
]
|
|
||||||
auth = riva.client.Auth(None, True, server, metadata)
|
|
||||||
|
|
||||||
self._asr_service = riva.client.ASRService(auth)
|
|
||||||
|
|
||||||
self._queue = asyncio.Queue()
|
|
||||||
self._config = None
|
self._config = None
|
||||||
self._thread_task = None
|
self._asr_service = None
|
||||||
self._response_task = None
|
self._settings = {"language": self._language_enum}
|
||||||
|
|
||||||
def can_generate_metrics(self) -> bool:
|
def language_to_service_language(self, language: Language) -> Optional[str]:
|
||||||
return False
|
"""Convert pipecat Language enum to Riva's language code."""
|
||||||
|
return language_to_riva_language(language)
|
||||||
|
|
||||||
async def start(self, frame: StartFrame):
|
def _initialize_client(self):
|
||||||
await super().start(frame)
|
"""Initialize the Riva ASR client with authentication metadata."""
|
||||||
|
if self._asr_service is not None:
|
||||||
if self._config:
|
|
||||||
return
|
return
|
||||||
|
|
||||||
# config = riva.client.StreamingRecognitionConfig(
|
# Set up authentication metadata for NVIDIA Cloud Functions
|
||||||
config=riva.client.RecognitionConfig(
|
metadata = [
|
||||||
# encoding=riva.client.AudioEncoding.LINEAR_PCM,
|
["function-id", self._function_id],
|
||||||
language_code=self._language_code,
|
["authorization", f"Bearer {self._api_key}"],
|
||||||
# model="",
|
]
|
||||||
|
|
||||||
|
# Create authenticated client
|
||||||
|
auth = riva.client.Auth(None, True, self._server, metadata)
|
||||||
|
self._asr_service = riva.client.ASRService(auth)
|
||||||
|
|
||||||
|
logger.info(f"Initialized Riva Canary ASR service with model: {self.model_name}")
|
||||||
|
|
||||||
|
def _create_recognition_config(self):
|
||||||
|
"""Create the Riva ASR recognition configuration."""
|
||||||
|
# Create base configuration
|
||||||
|
config = riva.client.RecognitionConfig(
|
||||||
|
language_code=self._language, # Now using the string, not a tuple
|
||||||
max_alternatives=1,
|
max_alternatives=1,
|
||||||
profanity_filter=self._profanity_filter,
|
profanity_filter=self._profanity_filter,
|
||||||
enable_automatic_punctuation=self._automatic_punctuation,
|
enable_automatic_punctuation=self._automatic_punctuation,
|
||||||
verbatim_transcripts=not self._no_verbatim_transcripts,
|
verbatim_transcripts=self._verbatim_transcripts,
|
||||||
# sample_rate_hertz=self.sample_rate,
|
|
||||||
# audio_channel_count=1,
|
|
||||||
# enable_word_time_offsets=args.word_time_offsets or args.speaker_diarization,??
|
|
||||||
# ),
|
|
||||||
# interim_results=True,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
riva.client.add_word_boosting_to_config(
|
# Add word boosting if specified
|
||||||
config, self._boosted_lm_words, self._boosted_lm_score
|
if self._boosted_lm_words:
|
||||||
)
|
riva.client.add_word_boosting_to_config(
|
||||||
|
config, self._boosted_lm_words, self._boosted_lm_score
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add voice activity detection parameters
|
||||||
riva.client.add_endpoint_parameters_to_config(
|
riva.client.add_endpoint_parameters_to_config(
|
||||||
config,
|
config,
|
||||||
self._start_history,
|
self._start_history,
|
||||||
@@ -308,56 +373,102 @@ class RivaOfflineSTTService(SegmentedSTTService):
|
|||||||
self._stop_threshold,
|
self._stop_threshold,
|
||||||
self._stop_threshold_eou,
|
self._stop_threshold_eou,
|
||||||
)
|
)
|
||||||
riva.client.add_custom_configuration_to_config(config, self._custom_configuration)
|
|
||||||
|
|
||||||
self._config = config
|
# Add any custom configuration
|
||||||
|
if self._custom_configuration:
|
||||||
|
riva.client.add_custom_configuration_to_config(config, self._custom_configuration)
|
||||||
|
|
||||||
|
return config
|
||||||
|
|
||||||
|
def can_generate_metrics(self) -> bool:
|
||||||
|
"""Indicates whether this service can generate processing metrics."""
|
||||||
|
return True
|
||||||
|
|
||||||
|
async def start(self, frame: StartFrame):
|
||||||
|
"""Initialize the service when the pipeline starts."""
|
||||||
|
await super().start(frame)
|
||||||
|
self._initialize_client()
|
||||||
|
self._config = self._create_recognition_config()
|
||||||
|
|
||||||
|
async def set_language(self, language: Language):
|
||||||
|
"""Set the language for the STT service."""
|
||||||
|
logger.info(f"Switching STT language to: [{language}]")
|
||||||
|
self._language_enum = language
|
||||||
|
self._language = self.language_to_service_language(language) or "en-US"
|
||||||
|
self._settings["language"] = language
|
||||||
|
|
||||||
|
# Update configuration with new language
|
||||||
|
if self._config:
|
||||||
|
self._config.language_code = self._language
|
||||||
|
|
||||||
async def run_stt(self, audio: bytes) -> AsyncGenerator[Frame, None]:
|
async def run_stt(self, audio: bytes) -> AsyncGenerator[Frame, None]:
|
||||||
"""Transcribe an audio segment
|
"""Transcribe an audio segment using Riva Canary ASR.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
audio: Raw audio bytes in WAV format (already converted by base class).
|
audio: Raw audio bytes in WAV format (already converted by base class).
|
||||||
|
|
||||||
Yields:
|
Yields:
|
||||||
Frame: TranscriptionFrame containing the transcribed text.
|
Frame: TranscriptionFrame containing the transcribed text.
|
||||||
|
|
||||||
Note:
|
|
||||||
The audio is already in WAV format from the SegmentedSTTService.
|
|
||||||
Only non-empty transcriptions are yielded.
|
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
response = self._asr_service.offline_recognize(audio, self._config)
|
await self.start_processing_metrics()
|
||||||
# response = riva.client.print_offline(response=self._asr_service.offline_recognize(audio, self._config))
|
await self.start_ttfb_metrics()
|
||||||
print(f"_____stt.py * response: {response}")
|
|
||||||
# # Send to Fal directly (audio is already in WAV format from base class)
|
|
||||||
# data_uri = fal_client.encode(audio, "audio/x-wav")
|
|
||||||
# response = await self._fal_client.run(
|
|
||||||
# "fal-ai/wizper",
|
|
||||||
# arguments={"audio_url": data_uri, **self._settings},
|
|
||||||
# )
|
|
||||||
|
|
||||||
if response and "text" in response:
|
# Make sure the client is initialized
|
||||||
text = response["text"].strip()
|
if self._asr_service is None:
|
||||||
if text: # Only yield non-empty text
|
self._initialize_client()
|
||||||
logger.debug(f"Transcription: [{text}]")
|
|
||||||
yield TranscriptionFrame(
|
# Make sure the config is created
|
||||||
text, "", time_now_iso8601(), Language(self._settings["language"])
|
if self._config is None:
|
||||||
)
|
self._config = self._create_recognition_config()
|
||||||
|
|
||||||
|
# Type assertion to satisfy the IDE
|
||||||
|
assert self._asr_service is not None, "ASR service not initialized"
|
||||||
|
assert self._config is not None, "Recognition config not created"
|
||||||
|
|
||||||
|
# Process audio with Riva ASR - explicitly request non-future response
|
||||||
|
raw_response = self._asr_service.offline_recognize(audio, self._config, future=False)
|
||||||
|
|
||||||
|
await self.stop_ttfb_metrics()
|
||||||
|
await self.stop_processing_metrics()
|
||||||
|
|
||||||
|
# Process the response - handle different possible return types
|
||||||
|
try:
|
||||||
|
# If it's a future-like object, get the result
|
||||||
|
if hasattr(raw_response, "result"):
|
||||||
|
response = raw_response.result()
|
||||||
|
else:
|
||||||
|
response = raw_response
|
||||||
|
|
||||||
|
# Process transcription results
|
||||||
|
transcription_found = False
|
||||||
|
|
||||||
|
# Now we can safely check results
|
||||||
|
# Type hint for the IDE
|
||||||
|
results = getattr(response, "results", [])
|
||||||
|
|
||||||
|
for result in results:
|
||||||
|
alternatives = getattr(result, "alternatives", [])
|
||||||
|
if alternatives:
|
||||||
|
text = alternatives[0].transcript.strip()
|
||||||
|
if text:
|
||||||
|
logger.debug(f"Transcription: [{text}]")
|
||||||
|
yield TranscriptionFrame(
|
||||||
|
text, "", time_now_iso8601(), self._language_enum
|
||||||
|
)
|
||||||
|
transcription_found = True
|
||||||
|
|
||||||
|
if not transcription_found:
|
||||||
|
logger.debug("No transcription results found in Riva response")
|
||||||
|
|
||||||
|
except AttributeError as ae:
|
||||||
|
logger.error(f"Unexpected response structure from Riva: {ae}")
|
||||||
|
yield ErrorFrame(f"Unexpected Riva response format: {str(ae)}")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Riva Offline STT error: {e}")
|
logger.exception(f"Riva Canary ASR error: {e}")
|
||||||
yield ErrorFrame(f"Riva Offline STT error: {str(e)}")
|
yield ErrorFrame(f"Riva Canary ASR error: {str(e)}")
|
||||||
|
|
||||||
def __next__(self) -> bytes:
|
|
||||||
if not self._thread_running:
|
|
||||||
raise StopIteration
|
|
||||||
future = asyncio.run_coroutine_threadsafe(self._queue.get(), self.get_event_loop())
|
|
||||||
return future.result()
|
|
||||||
|
|
||||||
def __iter__(self):
|
|
||||||
return self
|
|
||||||
|
|
||||||
class ParakeetSTTService(RivaSTTService):
|
class ParakeetSTTService(RivaSTTService):
|
||||||
class InputParams(BaseModel):
|
class InputParams(BaseModel):
|
||||||
@@ -391,4 +502,3 @@ class ParakeetSTTService(RivaSTTService):
|
|||||||
"`ParakeetSTTService` is deprecated, use `RivaSTTService` instead.",
|
"`ParakeetSTTService` is deprecated, use `RivaSTTService` instead.",
|
||||||
DeprecationWarning,
|
DeprecationWarning,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,12 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
import os
|
||||||
from typing import AsyncGenerator, Optional
|
from typing import AsyncGenerator, Optional
|
||||||
|
|
||||||
|
# Suppress gRPC fork warnings
|
||||||
|
os.environ["GRPC_ENABLE_FORK_SUPPORT"] = "false"
|
||||||
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
|
|
||||||
@@ -152,4 +156,3 @@ class FastPitchTTSService(RivaTTSService):
|
|||||||
"`FastPitchTTSService` is deprecated, use `RivaTTSService` instead.",
|
"`FastPitchTTSService` is deprecated, use `RivaTTSService` instead.",
|
||||||
DeprecationWarning,
|
DeprecationWarning,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user