opendraft 1.7.1 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/opendraft.js +14 -18
- package/package.json +1 -1
package/bin/opendraft.js
CHANGED
|
@@ -45,24 +45,20 @@ function printBox(lines, color = PURPLE) {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
function printLogo() {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
║ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ║
|
|
63
|
-
║ ║
|
|
64
|
-
╚══════════════════════════════════════════════════════════╝${RESET}
|
|
65
|
-
`);
|
|
48
|
+
const art = [
|
|
49
|
+
' ____ ____ ______ ',
|
|
50
|
+
' / __ \\____ ___ ____ / __ \\_________ _/ __/ /_',
|
|
51
|
+
' / / / / __ \\/ _ \\/ __ \\/ / / / ___/ __ `/ /_/ __/',
|
|
52
|
+
'/ /_/ / /_/ / __/ / / / /_/ / / / /_/ / __/ /_ ',
|
|
53
|
+
'\\____/ .___/\\___/_/ /_/_____/_/ \\__,_/_/ \\__/ ',
|
|
54
|
+
' /_/ ',
|
|
55
|
+
];
|
|
56
|
+
console.log('');
|
|
57
|
+
for (const line of art) {
|
|
58
|
+
console.log(` ${GREEN}${BOLD}${line}${RESET}`);
|
|
59
|
+
}
|
|
60
|
+
console.log(` ${GRAY}the open-source AI thesis writer · 0% fabricated citations${RESET}`);
|
|
61
|
+
console.log('');
|
|
66
62
|
}
|
|
67
63
|
|
|
68
64
|
function checkPython() {
|