/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports all enum related types from the schema. * * 🟢 You can import this file directly. */ export const Provider = { openai: 'openai', anthropic: 'anthropic', xai: 'xai' } as const export type Provider = (typeof Provider)[keyof typeof Provider] export const MessageRole = { system: 'system', user: 'user', assistant: 'assistant', tool: 'tool' } as const export type MessageRole = (typeof MessageRole)[keyof typeof MessageRole]