mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
0e0a703496
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
19 lines
799 B
Python
19 lines
799 B
Python
import openai
|
|
import sentry_sdk
|
|
from sentry_sdk.integrations.celery import CeleryIntegration
|
|
from sentry_sdk.integrations.flask import FlaskIntegration
|
|
from werkzeug.exceptions import HTTPException
|
|
|
|
|
|
def init_app(app):
|
|
if app.config.get("SENTRY_DSN"):
|
|
sentry_sdk.init(
|
|
dsn=app.config.get("SENTRY_DSN"),
|
|
integrations=[FlaskIntegration(), CeleryIntegration()],
|
|
ignore_errors=[HTTPException, ValueError, openai.APIStatusError],
|
|
traces_sample_rate=app.config.get("SENTRY_TRACES_SAMPLE_RATE", 1.0),
|
|
profiles_sample_rate=app.config.get("SENTRY_PROFILES_SAMPLE_RATE", 1.0),
|
|
environment=app.config.get("DEPLOY_ENV"),
|
|
release=f"dify-{app.config.get('CURRENT_VERSION')}-{app.config.get('COMMIT_SHA')}",
|
|
)
|