Files
tg-chat-bot/src/model/ollama-request.ts
T
2026-05-13 10:18:54 +03:00

7 lines
129 B
TypeScript

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