-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from gyagp/llama
Add WebGPU whisper large and llama 3.2
- Loading branch information
Showing
10 changed files
with
149 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,112 +1,109 @@ | ||
@scope (.markdown) { | ||
|
||
/* Code blocks */ | ||
pre { | ||
margin: 0.5rem 0; | ||
white-space: break-spaces; | ||
} | ||
|
||
code { | ||
padding: 0.2em 0.4em; | ||
border-radius: 4px; | ||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | ||
font-size: 0.9em; | ||
} | ||
|
||
pre, | ||
code { | ||
background-color: #f2f2f2; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
|
||
pre, | ||
code { | ||
background-color: #333; | ||
} | ||
|
||
} | ||
|
||
pre:has(code) { | ||
padding: 1rem 0.5rem; | ||
} | ||
|
||
pre>code { | ||
padding: 0; | ||
} | ||
|
||
/* Headings */ | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-weight: 600; | ||
line-height: 1.2; | ||
} | ||
|
||
h1 { | ||
font-size: 2em; | ||
margin: 1rem 0; | ||
} | ||
|
||
h2 { | ||
font-size: 1.5em; | ||
margin: 0.83rem 0; | ||
} | ||
|
||
h3 { | ||
font-size: 1.25em; | ||
margin: 0.67rem 0; | ||
} | ||
|
||
h4 { | ||
font-size: 1em; | ||
margin: 0.5rem 0; | ||
} | ||
|
||
h5 { | ||
font-size: 0.875em; | ||
margin: 0.33rem 0; | ||
} | ||
|
||
h6 { | ||
font-size: 0.75em; | ||
margin: 0.25rem 0; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
/* Unordered List */ | ||
ul { | ||
list-style-type: disc; | ||
margin-left: 1.5rem; | ||
} | ||
|
||
/* Ordered List */ | ||
ol { | ||
list-style-type: decimal; | ||
margin-left: 1.5rem; | ||
} | ||
|
||
/* List Items */ | ||
li { | ||
margin: 0.25rem 0; | ||
} | ||
|
||
p:not(:first-child) { | ||
margin-top: 0.75rem; | ||
} | ||
|
||
p:not(:last-child) { | ||
margin-bottom: 0.75rem; | ||
} | ||
} | ||
@scope (.markdown) { | ||
/* Code blocks */ | ||
pre { | ||
margin: 0.5rem 0; | ||
white-space: break-spaces; | ||
} | ||
|
||
code { | ||
padding: 0.2em 0.4em; | ||
border-radius: 4px; | ||
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; | ||
font-size: 0.9em; | ||
} | ||
|
||
pre, | ||
code { | ||
background-color: #f2f2f2; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
pre, | ||
code { | ||
background-color: #333; | ||
} | ||
} | ||
|
||
pre:has(code) { | ||
padding: 1rem 0.5rem; | ||
} | ||
|
||
pre > code { | ||
padding: 0; | ||
} | ||
|
||
/* Headings */ | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-weight: 600; | ||
line-height: 1.2; | ||
} | ||
|
||
h1 { | ||
font-size: 2em; | ||
margin: 1rem 0; | ||
} | ||
|
||
h2 { | ||
font-size: 1.5em; | ||
margin: 0.83rem 0; | ||
} | ||
|
||
h3 { | ||
font-size: 1.25em; | ||
margin: 0.67rem 0; | ||
} | ||
|
||
h4 { | ||
font-size: 1em; | ||
margin: 0.5rem 0; | ||
} | ||
|
||
h5 { | ||
font-size: 0.875em; | ||
margin: 0.33rem 0; | ||
} | ||
|
||
h6 { | ||
font-size: 0.75em; | ||
margin: 0.25rem 0; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
/* Unordered List */ | ||
ul { | ||
list-style-type: disc; | ||
margin-left: 1.5rem; | ||
} | ||
|
||
/* Ordered List */ | ||
ol { | ||
list-style-type: decimal; | ||
margin-left: 1.5rem; | ||
} | ||
|
||
/* List Items */ | ||
li { | ||
margin: 0.25rem 0; | ||
} | ||
|
||
p:not(:first-child) { | ||
margin-top: 0.75rem; | ||
} | ||
|
||
p:not(:last-child) { | ||
margin-bottom: 0.75rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: [ | ||
"./index.html", | ||
"./src/**/*.{js,ts,jsx,tsx}", | ||
], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
} | ||
|
||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], | ||
theme: { | ||
extend: {} | ||
}, | ||
plugins: [] | ||
}; |