Files
llm-backend/generated/prisma/enums.ts

29 lines
614 B
TypeScript
Raw Normal View History

2026-01-27 17:47:41 -08:00
/* !!! 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]