Skip to content

Commit

Permalink
Fix invalid reference in ParlaiBot class init
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Nov 30, 2023
1 parent 508f574 commit 92a750b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chatbot_core/parlai.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# China Patent: CN102017585 - Europe Patent: EU2156652 - Patents Pending
from abc import abstractmethod
from threading import Event, Thread
from neon_utils.logger import LOG
from ovos_utils.log import LOG

import spacy

Expand All @@ -36,7 +36,7 @@ def __init__(self, interactive_script, response_timeout=25,
:param done_string: string that signals about episode done
:param exit_string: string that signals about the finish
"""
self.log = LOG.create_logger('parlai_logger')
self.log = LOG
self.nlp_engine = spacy.load("en_core_web_sm")

self.agent_id = 'local_agent'
Expand Down

0 comments on commit 92a750b

Please sign in to comment.