warning about missing markov; returns '???' when generation failed
This commit is contained in:
parent
00397b2dac
commit
d6372671be
1 changed files with 2 additions and 1 deletions
|
@ -507,7 +507,7 @@ class MarkovBlabberer:
|
||||||
self.logger.info("Sentence of the day: " + self.make_sentence())
|
self.logger.info("Sentence of the day: " + self.make_sentence())
|
||||||
|
|
||||||
def make_sentence(self, tries=100):
|
def make_sentence(self, tries=100):
|
||||||
return self.markov.make_sentence(tries=tries)
|
return self.markov.make_sentence(tries=tries) or "???"
|
||||||
|
|
||||||
def add_to_corpus(self, text):
|
def add_to_corpus(self, text):
|
||||||
text = text.lower()
|
text = text.lower()
|
||||||
|
@ -536,6 +536,7 @@ if __name__ == '__main__':
|
||||||
try:
|
try:
|
||||||
markov = MarkovBlabberer("initial.txt")
|
markov = MarkovBlabberer("initial.txt")
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
|
logging.warning("Didn't find `initial.txt`, continuing without markov blabbering!")
|
||||||
markov = None
|
markov = None
|
||||||
|
|
||||||
delojza = DelojzaBot(config.get('delojza', 'tg_api_key'),
|
delojza = DelojzaBot(config.get('delojza', 'tg_api_key'),
|
||||||
|
|
Loading…
Reference in a new issue