Compare commits

..

6 Commits

Author SHA1 Message Date
c1bd85fc58 1.1.24 2024-04-14 00:59:25 +02:00
b81220b2ba fix(core): update 2024-04-14 00:59:24 +02:00
ca26d9e98d 1.1.23 2024-04-14 00:52:04 +02:00
61b6161470 fix(core): update 2024-04-14 00:52:04 +02:00
463183bd3a 1.1.22 2024-04-14 00:47:50 +02:00
069a74d2b4 fix(core): update 2024-04-14 00:47:49 +02:00
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsdoc", "name": "@git.zone/tsdoc",
"version": "1.1.21", "version": "1.1.24",
"private": false, "private": false,
"description": "An advanced TypeScript documentation tool leveraging AI for enhanced insights and automated documentation generation, with capabilities for automated and enhanced documentation creation tailor-made for TypeScript projects.", "description": "An advanced TypeScript documentation tool leveraging AI for enhanced insights and automated documentation generation, with capabilities for automated and enhanced documentation creation tailor-made for TypeScript projects.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsdoc', name: '@git.zone/tsdoc',
version: '1.1.21', version: '1.1.24',
description: 'An advanced TypeScript documentation tool leveraging AI for enhanced insights and automated documentation generation, with capabilities for automated and enhanced documentation creation tailor-made for TypeScript projects.' description: 'An advanced TypeScript documentation tool leveraging AI for enhanced insights and automated documentation generation, with capabilities for automated and enhanced documentation creation tailor-made for TypeScript projects.'
} }

View File

@ -49,6 +49,8 @@ export class AiDoc {
this.openaiToken = this.argvArg.OPENAI_TOKEN; this.openaiToken = this.argvArg.OPENAI_TOKEN;
} else { } else {
// lets try smartinteract // lets try smartinteract
// wait for a second until OpenAI fixes punycode problem...
await plugins.smartdelay.delayFor(1000);
const answerObject = await this.smartinteractInstance.askQuestion({ const answerObject = await this.smartinteractInstance.askQuestion({
type: 'input', type: 'input',
message: `Please provide your OpenAI token`, message: `Please provide your OpenAI token`,
@ -59,7 +61,7 @@ export class AiDoc {
} }
this.printSanitizedToken(); this.printSanitizedToken();
// await this.npmextraKV.writeKey('OPENAI_TOKEN', this.openaiToken); await this.npmextraKV.writeKey('OPENAI_TOKEN', this.openaiToken);
} }
} }