hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
12 lines • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRoleSection = getRoleSection;
/**
* Gets the role section of the system prompt
* @param role The role definition
* @returns The role section content
*/
function getRoleSection(role = 'You are a helpful assistant.') {
return role;
}
//# sourceMappingURL=role.js.map