UNPKG

@aige/core

Version:
29 lines (28 loc) 924 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.execute = exports.schema = void 0; exports.schema = { type: 'function', function: { name: 'describe_reputation', description: 'Describe the updated player reputation (negative reputation is bad, positive reputation is good)', parameters: { type: 'object', required: ['description'], properties: { long_description: { type: 'string', description: 'How other characters view the player' }, short_description: { type: 'string', description: 'A short first-person description of the reputation of the player' } } } } }; const execute = (parameters) => { return parameters; }; exports.execute = execute;