UNPKG

gaunt-sloth-assistant

Version:

[![Tests and Lint](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [![Integration Tests](https://github.co

19 lines (18 loc) 395 B
import type { BaseMessage } from '@langchain/core/messages'; export type Message = BaseMessage; export interface State { messages: Message[]; } export interface ProgressCallback { (): void; } export interface ReviewOptions { source: string; preamble: string; diff: string; } export interface QuestionOptions { source: string; preamble: string; content: string; }