Skip to content

Commit 33060a9

Browse files
committed
release v1.9.6
1 parent 263765e commit 33060a9

File tree

3 files changed

+35
-11
lines changed

3 files changed

+35
-11
lines changed

.github/workflows/pre-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
Start-BitsTransfer https://github.com/josStorer/web-rwkv-converter/releases/latest/download/web-rwkv-converter_windows_x86_64.exe ./backend-rust/web-rwkv-converter.exe
3232
Start-BitsTransfer https://github.com/josStorer/LibreHardwareMonitor.Console/releases/latest/download/LibreHardwareMonitor.Console.zip ./LibreHardwareMonitor.Console.zip
3333
Expand-Archive ./LibreHardwareMonitor.Console.zip -DestinationPath ./components/LibreHardwareMonitor.Console
34-
del ./py310 -Recurse -Force
34+
del ./py310/Lib/site-packages/cyac -Recurse -Force
35+
del ./py310/Lib/site-packages/cyac-1.9.dist-info -Recurse -Force
3536
Start-BitsTransfer https://www.python.org/ftp/python/3.10.11/python-3.10.11-embed-amd64.zip ./python-3.10.11-embed-amd64.zip
3637
Expand-Archive ./python-3.10.11-embed-amd64.zip -DestinationPath ./py310
3738
$content=Get-Content "./py310/python310._pth"; $content | ForEach-Object {if ($_.ReadCount -eq 3) {"Lib\\site-packages"} else {$_}} | Set-Content ./py310/python310._pth

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
Start-BitsTransfer https://github.com/josStorer/web-rwkv-converter/releases/latest/download/web-rwkv-converter_windows_x86_64.exe ./backend-rust/web-rwkv-converter.exe
6060
Start-BitsTransfer https://github.com/josStorer/LibreHardwareMonitor.Console/releases/latest/download/LibreHardwareMonitor.Console.zip ./LibreHardwareMonitor.Console.zip
6161
Expand-Archive ./LibreHardwareMonitor.Console.zip -DestinationPath ./components/LibreHardwareMonitor.Console
62-
del ./py310 -Recurse -Force
62+
del ./py310/Lib/site-packages/cyac -Recurse -Force
63+
del ./py310/Lib/site-packages/cyac-1.9.dist-info -Recurse -Force
6364
Start-BitsTransfer https://www.python.org/ftp/python/3.10.11/python-3.10.11-embed-amd64.zip ./python-3.10.11-embed-amd64.zip
6465
Expand-Archive ./python-3.10.11-embed-amd64.zip -DestinationPath ./py310
6566
$content=Get-Content "./py310/python310._pth"; $content | ForEach-Object {if ($_.ReadCount -eq 3) {"Lib\\site-packages"} else {$_}} | Set-Content ./py310/python310._pth

CURRENT_CHANGE.md

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
## Changes
22

3-
- add torch-2.7.1+cu128 precompiled kernels
4-
![image](https://github.com/user-attachments/assets/aa1703ec-da0e-4e3f-820c-9253f4b9bf15)
5-
- hide unnecessary pop-up consoles on windows
6-
- The linux binary files released in github releases now depend on libwebkit2gtk-4.1 to support Ubuntu 24.04. This means that versions below Ubuntu 20.04 will no longer be supported for running, and users will have to build it on their own. Additionally, Windows 7 is still supported, but you need to install the KB2999226 patch.
7-
- add quick think support
8-
![Image](https://github.com/user-attachments/assets/ecf66622-0765-42c9-b8a0-633c30329349)
9-
- fix the issue where the line breaks in the thinking content did not take effect
10-
- update manifest.json and defaultModelConfigs
11-
- bump go-webview2
3+
### Llama.cpp support
4+
5+
- Add llama.cpp support with pre-compiled Vulkan libraries for Windows that should work out-of-the-box with any modern GPU. Mac and Linux users still need to manually install llama-cpp-python. You can now use RWKV GGUF models as well as any other GGUF models such as DeepSeek, Qwen3, Gemma3, Phi4. You can select the llama.cpp tag in the Models page and download the required models with one click, or place downloaded GGUF models in the models directory for use.
6+
- <img src="https://github.com/user-attachments/assets/7ff56440-41cd-4ef2-8a63-b057061ddbf4" width="512"/>
7+
- The software's preset configs have been streamlined and now include some GGUF format presets. You can click the reset button to fetch the latest presets.
8+
- <img src="https://github.com/user-attachments/assets/b3203434-ccea-4043-8384-6cf412c37eb7" width="256"/>
9+
- The RWKV-Runner Python server in llama.cpp mode has been optimized. After loading the model to GPU, the server process only occupies approximately 200MB of memory on Windows platform.
10+
- When server users call the `/switch-model` API to load models, you only need to pass a file path ending with .gguf to the `model` field to use llama.cpp mode.
11+
12+
### Features
13+
14+
- llama.cpp support
15+
- <img src="https://github.com/user-attachments/assets/50de157f-16cb-4d86-bb25-a1f13e2a031f" width="512"/>
16+
- Add a setting to save the full rwkv-runner client state, rather than just storing necessary settings. This option is enabled by default. You can disable it and restart the software to restore the previous version's behavior
17+
- <img src="https://github.com/user-attachments/assets/4c8c7b13-8d62-4ff0-ab0d-d06c40d95f58" width="512"/>
18+
- add a share button to save your chat screenshot
19+
- <img src="https://github.com/user-attachments/assets/11533e20-836c-487f-b3ae-5cf7988f12bc" width="512"/>
20+
21+
### Improvements
22+
- reduce peak memory usage when loading rwkv7 in cuda mode
23+
- increase the maximum value of the top_k API parameter to 100
24+
- remove language tags in Models page, as all new models support global languages
25+
- remove useless/disabled resources
26+
- other small improvements
27+
- You can run RWKV-Runner on Windows 7 by installing the patches from the link below. Note that you still need to install Python 3.8 and dependencies manually. https://github.com/josStorer/wails/releases/tag/v2.9.2x
28+
29+
### Fixes
30+
- fix the issue of failing to load the state for RWKV7
31+
- Fix the abnormal behavior when passing a Tool Definition array. This is a frontend only parameter construction issue.
32+
- fix the issue where the model list did not refresh automatically after downloading the model when using a custom model path
1233

1334
Note: If you encounter WebView2 crash issues, please try opening the Windows Settings, click on Apps, search for
1435
WebView2, click Modify -> Repair to update your WebView2 runtime.
@@ -20,3 +41,4 @@ WebView2, click Modify -> Repair to update your WebView2 runtime.
2041
- Linux: https://github.com/josStorer/RWKV-Runner/blob/master/build/linux/Readme_Install.txt
2142
- Simple Deploy Example: https://github.com/josStorer/RWKV-Runner/blob/master/README.md#simple-deploy-example
2243
- Server Deploy Examples: https://github.com/josStorer/RWKV-Runner/tree/master/deploy-examples
44+
- Windows 7 Patches: https://github.com/josStorer/wails/releases/tag/v2.9.2x

0 commit comments

Comments
 (0)