Tree: Pensive cowboy

Icon for YALS

Signed-off-by: kingbri <8082010+kingbri1@users.noreply.github.com>
This commit is contained in:
kingbri
2025-03-05 01:38:36 -05:00
parent 929183bc3f
commit 1dc690eec6
5 changed files with 10 additions and 4 deletions

View File

@@ -204,7 +204,7 @@ jobs:
$env:CMAKE_CUDA_ARCHITECTURES="75;86;89;120"
}
deno task bindings-win
deno task compile
deno task compile-win
- name: Copy vcruntime
run: |
cp "C:\Windows\System32\vcruntime140.dll" lib

View File

@@ -1,3 +1,7 @@
<div align="center">
<img src="https://github.com/theroyallab/YALS/blob/main/assets/icon.png?raw=true" />
</div>
# YALS
<p align="left">
@@ -110,4 +114,4 @@ YALS would not exist without the work of other contributors and FOSS projects:
- [Hono](https://hono.dev)
- [Zod](https://zod.dev)
- [KoboldCpp](https://github.com/lostruins/koboldcpp)
- [SillyTavern](https://github.com/SillyTavern/SillyTavern)
- [SillyTavern](https://github.com/SillyTavern/SillyTavern)

BIN
assets/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -3,10 +3,12 @@
"dev": "deno run -A --watch main.ts",
"start": "deno run --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run main.ts",
"bindings": "cd bindings && ./bindings.sh",
"bindings-win": "cd bindings && powershell -ExecutionPolicy Bypass -File bindings.ps1",
"generate-sha": "deno run --allow-run --allow-write=gitSha.txt generateGitSha.ts",
"compile": "deno compile --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run --include=gitSha.txt main.ts",
"build": "deno task generate-sha && deno task compile"
"build": "deno task generate-sha && deno task compile",
"bindings-win": "cd bindings && powershell -ExecutionPolicy Bypass -File bindings.ps1",
"compile-win": "deno compile --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run --include=gitSha.txt --icon assets/icon.ico main.ts",
"build-win": "deno task generate-sha && deno task compile-win"
},
"imports": {
"@/": "./",