Skip to content

Commit

Permalink
Add timing context
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 2, 2023
1 parent fbfe9c6 commit df0b33a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions neon_minerva/integration/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from threading import Event, Lock
from time import time
from typing import List
from ovos_utils.log import LOG
from ovos_bus_client.client import MessageBusClient
Expand Down Expand Up @@ -105,6 +106,7 @@ def send_prompt(self, prompt: str):
{"neon_should_respond": True,
"source": ["minerva"],
"destination": ["skills"],
"timing": {"emitted": time()},
"username": "minerva"}))

def handle_prompt(self, prompt: str):
Expand Down

0 comments on commit df0b33a

Please sign in to comment.