예제 #1
0
파일: nlg.py 프로젝트: roman-kutlak/nlglib
 def realise(self, msgs):
     """ Perform linguistic realisation. """
     res = realisation.realise(msgs)
     return res
예제 #2
0
 def test_simple(self):
     text = realisation.realise(get_clause())
     expected = 'you say hello'
     self.assertEqual(expected, text)