UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

13 lines (12 loc) 446 B
import { ReadFileFunction } from '../../functions/ReadFile.js'; import { WriteFileFunction } from '../../functions/index.js'; import { prompts } from './prompts.js'; import { Agent, AgentConfig } from '../utils/index.js'; export class VueDeveloperAgent extends Agent { constructor(context) { super(new AgentConfig(() => prompts, [ new WriteFileFunction(), new ReadFileFunction(), ]), context); } }