File size: 572 Bytes
755dd12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
export interface IQueryResult {
related?: string;
answer?: string;
contexts?: Record<string, any>[];
images?: Record<string, any>[];
}
export interface ISelectOptions {
name: string;
value: string;
}
export type Role = 'user' | 'assistant'
export type Provider = 'ollama' | 'lmstudio';
export interface IMessage {
role: Role;
content: string;
}
export type TSearCategory = 'general' | 'science' | 'images' | 'videos' | 'news'
export type TSearchMode = 'simple' | 'deep' | 'research'
export type TSearchEngine = 'GOOGLE' | 'BING' | 'SOGOU' | 'SEARXNG'
|