atom-audio-engine 0.1.5__py3-none-any.whl → 0.1.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {atom_audio_engine-0.1.5.dist-info → atom_audio_engine-0.1.6.dist-info}/METADATA +1 -1
- {atom_audio_engine-0.1.5.dist-info → atom_audio_engine-0.1.6.dist-info}/RECORD +7 -7
- audio_engine/__init__.py +6 -2
- audio_engine/asr/__init__.py +5 -1
- audio_engine/llm/__init__.py +5 -1
- {atom_audio_engine-0.1.5.dist-info → atom_audio_engine-0.1.6.dist-info}/WHEEL +0 -0
- {atom_audio_engine-0.1.5.dist-info → atom_audio_engine-0.1.6.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
audio_engine/__init__.py,sha256=
|
|
2
|
-
audio_engine/asr/__init__.py,sha256=
|
|
1
|
+
audio_engine/__init__.py,sha256=KxGAd4of3q5pvGhniSnQvihi-UC-uFI6nFJdbyV2rb8,1538
|
|
2
|
+
audio_engine/asr/__init__.py,sha256=HkNjZXyDqZSYTB17kKp3koI9k5rrjID8kZgH2Idxt28,1232
|
|
3
3
|
audio_engine/asr/base.py,sha256=dC6cvAlxoOzUXNz9do-ueRObmNXqg4rtsY9fh6k67vA,2380
|
|
4
4
|
audio_engine/asr/cartesia.py,sha256=jLoetv6jiAbcfmfGkrwKRGo5sbMZ-WJTwIVvWno1Vko,13185
|
|
5
5
|
audio_engine/asr/deepgram.py,sha256=RwtG0e66Y_8HKehoHFzjgJ5JlQs8JEpu_0kpWGmsvBc,6431
|
|
@@ -9,7 +9,7 @@ audio_engine/core/pipeline.py,sha256=rMZOlllT32xruz3nkeoYGRfnq94zgs-dzAbTahSITtU
|
|
|
9
9
|
audio_engine/core/types.py,sha256=iFQPajgeS1YgMWXJvubA8sWbxLI1Z8nF-z1uucrgNm4,2295
|
|
10
10
|
audio_engine/integrations/__init__.py,sha256=69Hna1pfmB929WbM7GpAHlrk4xPOleKTnoaBBksFo9k,114
|
|
11
11
|
audio_engine/integrations/geneface.py,sha256=JgxGYfqDk9n-p4e1VNczoEJdMPzzfF5QGsyxxinrWr8,8790
|
|
12
|
-
audio_engine/llm/__init__.py,sha256=
|
|
12
|
+
audio_engine/llm/__init__.py,sha256=nCMx0QYVZSPVQaqu23LGLE8ePDnceygdw0Zz-4Oqg6g,1016
|
|
13
13
|
audio_engine/llm/base.py,sha256=vsKi2UYuhMr_nubMsoyU6hzSV6gr3DZ1sPvqkSvap3c,2862
|
|
14
14
|
audio_engine/llm/groq.py,sha256=zX4z_ZPyB5_FxhMwg-MnK5Ga6vpqRJLaRTrknSYJZXU,6682
|
|
15
15
|
audio_engine/pipelines/__init__.py,sha256=Q1iZjX38TigrZPBaFgv_5AXw21wBN1Z-4nfXPjV-xDI,49
|
|
@@ -26,7 +26,7 @@ audio_engine/tts/base.py,sha256=YbvdVF9XbJyv7NWf_5W7bawyquz8z83BcNcXOdA6iaY,4424
|
|
|
26
26
|
audio_engine/tts/cartesia.py,sha256=VipeNLgOac_hlsi2hasZe_ALYZZ7hvQ72eFeY17J600,16313
|
|
27
27
|
audio_engine/utils/__init__.py,sha256=J-XxXjgjAmvsM39W3pKI2we-C6S7rd49zfaEf9omwN8,245
|
|
28
28
|
audio_engine/utils/audio.py,sha256=RHp-FRjyCMPDaSQCOnxp7m_KO2z3Enu3iX7J5BVRD-0,5507
|
|
29
|
-
atom_audio_engine-0.1.
|
|
30
|
-
atom_audio_engine-0.1.
|
|
31
|
-
atom_audio_engine-0.1.
|
|
32
|
-
atom_audio_engine-0.1.
|
|
29
|
+
atom_audio_engine-0.1.6.dist-info/METADATA,sha256=C3C3SOBD6B-PSEeFVN5Mn67_1hcGFsIOG5jcNs9YxDI,6690
|
|
30
|
+
atom_audio_engine-0.1.6.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
31
|
+
atom_audio_engine-0.1.6.dist-info/top_level.txt,sha256=IyumwgFrsDL7nlZlBijX-0shiSVhhBCFPUNBRNKzWP4,13
|
|
32
|
+
atom_audio_engine-0.1.6.dist-info/RECORD,,
|
audio_engine/__init__.py
CHANGED
|
@@ -4,7 +4,7 @@ Audio Engine - Pluggable audio-to-audio conversational AI framework.
|
|
|
4
4
|
Orchestrates ASR → LLM → TTS pipeline with real-time streaming support.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "0.1.
|
|
7
|
+
__version__ = "0.1.6"
|
|
8
8
|
|
|
9
9
|
# Core exports
|
|
10
10
|
from .core.pipeline import Pipeline
|
|
@@ -33,7 +33,11 @@ except ImportError:
|
|
|
33
33
|
|
|
34
34
|
# LLM Providers
|
|
35
35
|
from .llm.base import BaseLLM
|
|
36
|
-
|
|
36
|
+
|
|
37
|
+
try:
|
|
38
|
+
from .llm.groq import GroqLLM
|
|
39
|
+
except ImportError:
|
|
40
|
+
pass
|
|
37
41
|
|
|
38
42
|
# TTS Providers
|
|
39
43
|
from .tts.base import BaseTTS
|
audio_engine/asr/__init__.py
CHANGED
|
@@ -3,9 +3,13 @@
|
|
|
3
3
|
from ..core.config import ASRConfig
|
|
4
4
|
|
|
5
5
|
from .base import BaseASR
|
|
6
|
-
from .deepgram import DeepgramASR
|
|
7
6
|
from .cartesia import CartesiaASR
|
|
8
7
|
|
|
8
|
+
try:
|
|
9
|
+
from .deepgram import DeepgramASR
|
|
10
|
+
except ImportError:
|
|
11
|
+
pass
|
|
12
|
+
|
|
9
13
|
__all__ = ["BaseASR", "DeepgramASR", "CartesiaASR", "get_asr_from_config"]
|
|
10
14
|
|
|
11
15
|
|
audio_engine/llm/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|