Initial MVP: multiplexer + chat DB
This commit is contained in:
28
generated/prisma/enums.ts
Normal file
28
generated/prisma/enums.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
/* !!! 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]
|
||||
Reference in New Issue
Block a user