voiceground 0.1.4__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.
- voiceground/__init__.py +38 -0
- voiceground/_static/index.html +63 -0
- voiceground/events.py +72 -0
- voiceground/metrics.py +164 -0
- voiceground/observer.py +546 -0
- voiceground/py.typed +0 -0
- voiceground/reporters/__init__.py +19 -0
- voiceground/reporters/base.py +43 -0
- voiceground/reporters/html.py +238 -0
- voiceground/reporters/metrics.py +468 -0
- voiceground-0.1.4.dist-info/METADATA +199 -0
- voiceground-0.1.4.dist-info/RECORD +14 -0
- voiceground-0.1.4.dist-info/WHEEL +4 -0
- voiceground-0.1.4.dist-info/licenses/LICENSE +26 -0
voiceground/__init__.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""Voiceground - Observability framework for Pipecat conversational AI."""
|
|
2
|
+
|
|
3
|
+
from voiceground.events import VoicegroundEvent
|
|
4
|
+
from voiceground.metrics import (
|
|
5
|
+
VoicegroundLLMResponseTimeFrame,
|
|
6
|
+
VoicegroundResponseTimeFrame,
|
|
7
|
+
VoicegroundSystemOverheadFrame,
|
|
8
|
+
VoicegroundToolUsageFrame,
|
|
9
|
+
VoicegroundTranscriptionOverheadFrame,
|
|
10
|
+
VoicegroundTurnDurationFrame,
|
|
11
|
+
VoicegroundVoiceSynthesisOverheadFrame,
|
|
12
|
+
)
|
|
13
|
+
from voiceground.observer import VoicegroundObserver
|
|
14
|
+
from voiceground.reporters import BaseReporter, HTMLReporter, MetricsReporter
|
|
15
|
+
|
|
16
|
+
try:
|
|
17
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
18
|
+
|
|
19
|
+
__version__ = version("voiceground")
|
|
20
|
+
except (PackageNotFoundError, Exception):
|
|
21
|
+
# Fallback for development/editable installs
|
|
22
|
+
# The actual version will be set by hatch-vcs during build
|
|
23
|
+
__version__ = "0.0.0+dev"
|
|
24
|
+
__all__ = [
|
|
25
|
+
"VoicegroundObserver",
|
|
26
|
+
"VoicegroundEvent",
|
|
27
|
+
"BaseReporter",
|
|
28
|
+
"HTMLReporter",
|
|
29
|
+
"MetricsReporter",
|
|
30
|
+
"VoicegroundTurnDurationFrame",
|
|
31
|
+
"VoicegroundResponseTimeFrame",
|
|
32
|
+
"VoicegroundTranscriptionOverheadFrame",
|
|
33
|
+
"VoicegroundVoiceSynthesisOverheadFrame",
|
|
34
|
+
"VoicegroundLLMResponseTimeFrame",
|
|
35
|
+
"VoicegroundSystemOverheadFrame",
|
|
36
|
+
"VoicegroundToolUsageFrame",
|
|
37
|
+
"__version__",
|
|
38
|
+
]
|