chatbot-ui starter
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export enum OpenAIModel {
|
||||
DAVINCI_TURBO = "gpt-3.5-turbo"
|
||||
}
|
||||
|
||||
export interface Message {
|
||||
role: Role;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export type Role = "assistant" | "user";
|
||||
Reference in New Issue
Block a user