gaunt-sloth-assistant
Version:
[](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [ • 409 B
TypeScript
import { CommandLineConfigOverrides } from '#src/config.js';
export interface SessionConfig {
mode: 'chat' | 'code';
readModePrompt: () => string | null;
description: string;
readyMessage: string;
exitMessage: string;
}
export declare function createInteractiveSession(sessionConfig: SessionConfig, commandLineConfigOverrides: CommandLineConfigOverrides, message?: string): Promise<void>;