Files
tg-chat-bot/src/model/ollama-request.ts
T

7 lines
125 B
TypeScript

export type OllamaRequest = {
uuid: string;
stream: any;
done: boolean;
fromId: number;
chatId: number;
}