generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
10 lines (9 loc) • 317 B
TypeScript
import { ChatMessage } from '../../agent-core/index.js';
import { GoalRunArgs } from '../utils/index.js';
export declare const prompts: {
name: string;
expertise: string;
initialMessages: () => ChatMessage[];
runMessages: ({ goal }: GoalRunArgs) => ChatMessage[];
loopPreventionPrompt: string;
};