@microsoft/teams-ai
Version:
SDK focused on building AI based applications for Microsoft Teams.
30 lines • 846 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InnerMonologueSchema = void 0;
/**
* JSON schema for validating an `InnerMonologue`.
*/
exports.InnerMonologueSchema = {
type: 'object',
properties: {
thoughts: {
type: 'object',
properties: {
thought: { type: 'string' },
reasoning: { type: 'string' },
plan: { type: 'string' }
},
required: ['thought', 'reasoning', 'plan']
},
action: {
type: 'object',
properties: {
name: { type: 'string' },
parameters: { type: 'object' }
},
required: ['name']
}
},
required: ['thoughts', 'action']
};
//# sourceMappingURL=InnerMonologueSchema.js.map