mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-13 15:18:26 +00:00
15 lines
303 B
TypeScript
15 lines
303 B
TypeScript
/**
|
|
* Models for prompt system
|
|
*/
|
|
|
|
export interface Message {
|
|
role: 'system' | 'user' | 'assistant';
|
|
content: string;
|
|
}
|
|
|
|
export type PromptFunction = (context: Record<string, any>) => Message[];
|
|
|
|
export interface PromptVersion {
|
|
[version: string]: (context: Record<string, any>) => Message[];
|
|
}
|