mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
This feature a new modal endpoint, and a complete new way to build the summary. ## SummaryBuilder The summary builder is based on conversational model, where an exchange between the model and the user is made. This allow more context inclusion and a better respect of the rules. It requires an endpoint with OpenAI-like completions endpoint (/v1/chat/completions) ## vLLM Hermes3 Unlike previous deployment, this one use vLLM, which gives OpenAI-like completions endpoint out of the box. It could also handle guided JSON generation, so jsonformer is not needed. But, the model is quite good to follow JSON schema if asked in the prompt. ## Conversion of long/short into summary builder The builder is identifying participants, find key subjects, get a summary for each, then get a quick recap. The quick recap is used as a short_summary, while the markdown including the quick recap + key subjects + summaries are used for the long_summary. This is why the nextjs component has to be updated, to correctly style h1 and keep the new line of the markdown.
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import pytest
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_basic_process(
|
|
event_loop,
|
|
nltk,
|
|
dummy_transcript,
|
|
dummy_llm,
|
|
dummy_processors,
|
|
ensure_casing,
|
|
):
|
|
# goal is to start the server, and send rtc audio to it
|
|
# validate the events received
|
|
from reflector.tools.process import process_audio_file
|
|
from reflector.settings import settings
|
|
from pathlib import Path
|
|
|
|
# use an LLM test backend
|
|
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"] == 4
|
|
assert marks["TranscriptTranslatorProcessor"] == 4
|
|
assert marks["TranscriptTopicDetectorProcessor"] == 1
|
|
assert marks["TranscriptFinalSummaryProcessor"] == 1
|
|
assert marks["TranscriptFinalTitleProcessor"] == 1
|