UNPKG

ai-code-writer

Version:

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

13 lines (12 loc) 306 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ChatMessageEntity { constructor() { this.role = 'user'; this.filePath = ''; this.content = ''; this.toolCalls = []; this.callId = ''; } } exports.default = ChatMessageEntity;