| 32 | openai.api_key = OPENAI_KEY |
| 33 | |
| 34 | class FlaskAppConfig: |
| 35 | CORS_HEADERS = "Content-Type" |
| 36 | SQLALCHEMY_DATABASE_URI = DB_URL |
| 37 | SQLALCHEMY_ENGINE_OPTIONS = {"pool_pre_ping": True} |
| 38 | TIMEOUT = 60 |
| 39 | |
| 40 | if DB_URL: |
| 41 | ENGINE = create_engine(DB_URL) |
nothing calls this directly
no outgoing calls
no test coverage detected