llama-gpt/types/google.ts

15 lines
234 B
TypeScript

import { Message } from './chat';
export interface GoogleResponse {
message: Message;
}
export interface GoogleSource {
title: string;
link: string;
displayLink: string;
snippet: string;
image: string;
text: string;
}