starchat-ui / types /google.ts
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame contribute delete
341 Bytes
import { ChatBody, Message } from './chat';
export interface GoogleBody extends ChatBody {
googleAPIKey: string;
googleCSEId: string;
}
export interface GoogleResponse {
message: Message;
}
export interface GoogleSource {
title: string;
link: string;
displayLink: string;
snippet: string;
image: string;
text: string;
}