mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* feat: use llamaindex for transcript final title too * refactor: removed llm backend, replaced with one single class+llamaindex * refactor: self-review * fix: typing * fix: tests * refactor: extract clean_title and add tests * test: fix * test: remove ensure_casing/nltk * fix: tiny mistake
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import pytest
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_basic_process(
|
|
dummy_transcript,
|
|
dummy_llm,
|
|
dummy_processors,
|
|
):
|
|
# goal is to start the server, and send rtc audio to it
|
|
# validate the events received
|
|
from pathlib import Path
|
|
|
|
from reflector.settings import settings
|
|
from reflector.tools.process import process_audio_file
|
|
|
|
# LLM_BACKEND no longer exists in settings
|
|
# settings.LLM_BACKEND = "test"
|
|
settings.TRANSCRIPT_BACKEND = "whisper"
|
|
|
|
# event callback
|
|
marks = {}
|
|
|
|
async def event_callback(event):
|
|
if event.processor not in marks:
|
|
marks[event.processor] = 0
|
|
marks[event.processor] += 1
|
|
|
|
# invoke the process and capture events
|
|
path = Path(__file__).parent / "records" / "test_mathieu_hello.wav"
|
|
await process_audio_file(path.as_posix(), event_callback)
|
|
print(marks)
|
|
|
|
# validate the events
|
|
assert marks["TranscriptLinerProcessor"] == 1
|
|
assert marks["TranscriptTranslatorProcessor"] == 1
|
|
assert marks["TranscriptTopicDetectorProcessor"] == 1
|
|
assert marks["TranscriptFinalSummaryProcessor"] == 1
|
|
assert marks["TranscriptFinalTitleProcessor"] == 1
|