platypush/platypush/plugins/assistant/picovoice/_context.py

50 lines
1.1 KiB
Python

from dataclasses import dataclass
from time import time
from typing import Optional
@dataclass
class ConversationContext:
"""
Context of the conversation process.
"""
transcript: str = ''
is_final: bool = False
timeout: Optional[float] = None
t_start: Optional[float] = None
t_end: Optional[float] = None
def start(self):
self.reset()
self.t_start = time()
def stop(self):
self.reset()
self.t_end = time()
def reset(self):
self.transcript = ''
self.is_final = False
self.t_start = None
self.t_end = None
@property
def timed_out(self):
return (
not self.transcript
and not self.is_final
and self.timeout
and self.t_start
and time() - self.t_start > self.timeout
) or (
self.transcript
and not self.is_final
and self.timeout
and self.t_start
and time() - self.t_start > self.timeout * 2
)
# vim:sw=4:ts=4:et: