rasa人机对话脚本生成

__init__.py 266B

123456789
  1. from db.connection import db, get_db
  2. from db.models import Base, Intent, IntentExample, Story, StoryStep, CustomAction, SystemConfig
  3. __all__ = [
  4. 'db', 'get_db', 'Base', 'Intent',
  5. 'IntentExample', 'Story', 'StoryStep',
  6. 'CustomAction', 'SystemConfig'
  7. ]