class Config(object): DEBUG = True TESTING = False class DevelopmentConfig(Config): SECRET_KEY = "nasma" OPENAI_KEY = "" config = { 'development': DevelopmentConfig, 'testing': DevelopmentConfig, 'production': DevelopmentConfig }