Spaces:
Runtime error
Runtime error
File size: 341 Bytes
13095e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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;
}
|