Skip to content

Commit cbb3d99

Browse files
authored
Merge pull request #4166 from pipecat-ai/mb/fix-example-ordering-56
Fix example numbering, add LemonSlice to evals
2 parents fb1996c + d8b0ed1 commit cbb3d99

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

examples/foundational/56-lemonslice-transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async def main():
6565
tts = ElevenLabsTTSService(
6666
api_key=os.getenv("ELEVENLABS_API_KEY", ""),
6767
settings=ElevenLabsTTSService.Settings(
68-
voice="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
68+
voice=os.getenv("ELEVENLABS_VOICE_ID", ""),
6969
),
7070
)
7171

File renamed without changes.

scripts/evals/run-release-evals.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,10 @@ def EVAL_VISION_IMAGE(*, eval_speaks_first: bool = False):
278278
("53-concurrent-llm-evaluation.py", EVAL_SIMPLE_MATH),
279279
]
280280

281+
TESTS_56 = [
282+
("56-lemonslice-transport.py", EVAL_SIMPLE_MATH),
283+
]
284+
281285
TESTS = [
282286
*TESTS_07,
283287
*TESTS_12,
@@ -295,6 +299,7 @@ def EVAL_VISION_IMAGE(*, eval_speaks_first: bool = False):
295299
*TESTS_50,
296300
*TESTS_51,
297301
*TESTS_53,
302+
*TESTS_56,
298303
]
299304

300305

0 commit comments

Comments
 (0)