Files
2026-07-13 12:49:58 +08:00

20 lines
341 B
TypeScript

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;
}