UNPKG

ai-code-writer

Version:

An AI code writer application using OpenAI APIs for audio transcription and chat completion.

12 lines (11 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ChatMessageEntity { constructor() { this.role = 'user'; this.content = ''; this.filePath = ''; this.action = ''; } } exports.default = ChatMessageEntity;