import { defineIntegration, addVercelAiProcessors } from '@sentry/core'; const INTEGRATION_NAME = "VercelAI"; const _vercelAIIntegration = ((options = {}) => { return { name: INTEGRATION_NAME, options, setup(client) { addVercelAiProcessors(client); } }; }); const vercelAIIntegration = defineIntegration(_vercelAIIntegration); export { vercelAIIntegration }; //# sourceMappingURL=vercelai.js.map