| 17 | openai.api_key = OPENAI_KEY |
| 18 | |
| 19 | class FlaskAppConfig: |
| 20 | CORS_HEADERS = "Content-Type" |
| 21 | SQLALCHEMY_DATABASE_URI = DB_URL |
| 22 | SQLALCHEMY_ENGINE_OPTIONS = {"pool_pre_ping": True} |
| 23 | |
| 24 | if DB_URL: |
| 25 | ENGINE = create_engine(DB_URL) |
nothing calls this directly
no outgoing calls
no test coverage detected