-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogo.js
More file actions
19 lines (15 loc) · 637 Bytes
/
logo.js
File metadata and controls
19 lines (15 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ==========
// == Logo ==
// ==========
export async function asciiArtLogo() {
const logo = `
:~: _ _ __ __ ___ _ _ _ _ _
.'---\`. | | | | | \\ \\ | . \\<_> ___ _| |_ <_>| || | ___ _ _ _ _
| --- | | |_ | |_ | | | | || |<_-< | | | || || |/ ._>| '_>| | |
|_____| |___||___||_|_|_| |___/|_|/__/ |_| |_||_||_|\\___.|_| \`_. |
<___'
v1.2.0 -------- https://github.com/jparkerweb/llm-distillery -----------
`;
console.log(logo);
}
await asciiArtLogo()