gaunt-sloth-assistant
Version:
[](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [ • 395 B
TypeScript
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;
}