Skip to content

foldl/WritingTools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

16 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Writing Tools

demo2.mp4

πŸš€ What is it?

Writing Tools, Apple's AI-inspired app, enchants Windows, enhancing your pen with AI LLMs. One hotkey press, system-wide, fixes grammar, punctuation, and more. It's the world's most intelligent, system-wide grammar assistant.

Based on ChatLLM.cpp, and built with Delphi and Lazarus.

🌟 Why Choose Writing Tools?

In the realm of AI, a secret lies,
Where LLMs run on your very site.
System-wide, without a hitch,
Instantly in any app you might pick.

Clipboard untouched, a pure delight,
No need to worry, no data to steal.
Purely native, no Python, no Java, no JS,
Bloat-free, CPU usage, it's a joke.

Chat mode, a quick query's delight,
No text selected, a chat mode you'll find.
For quick queries, assistance at your command,
All commands customizable, a true delight.

Privacy, absolute, a promise kept,
No data to share, no worries to find.
Free and open-source, a pure delight,
Purely native, no bloat, no pain.

In the world of AI, a secret lies,
Where LLMs run on your very site.

  • Absolute privacy: Based on ChatLLM.cpp. LLMs run on your machine.
  • System-wide Functionality: Works instantly in any application where you can select text. Does not overwrite your clipboard.
  • Completely free and Open-source: Purely native. Bloat-free & uses pretty much 0% of your CPU.
  • Chat Mode: Seamlessly switching between context processing mode and chat mode.
  • Customization: All commands are fully customizable.
  • Markdown Rendering: Beautiful and elegant.

✨ Features

All features are defined by users based on their own needs. Some examples.

  • Proofread: The smartest grammar and spelling corrector.
  • Rewrite: Improve the phrasing of your text.
  • Make Friendly/Professional: Adjust the tone of your writing.
  • Summarize: Create concise summaries of longer texts.
  • Create Tables: Convert text into a structured Markdown table.
  • Custom Instructions: Give specific directions (e.g. Translate to Chinese).

Invoke Writing Tools with no text selected to enter quick chat mode.

πŸ›  Quick Start

  1. Go to the Releases page and download the latest package.

  2. Extract it anywhere you want.

  3. Download a quantized model for ChatLLM.cpp. Some small models:

    Model name Size (GB) Link
    QWen-2.5 1.5B 1.6 Link
    Gemma-2 2B 2.8 Link
  4. Configure your profile.

    Copy profile.json.in to profile.json. Fill in the path of the quantized model file:

    {
       //...
       "chatllm": {
          "default": [
             "-m",
             "path of the quantized model file"
          ]
       },
       //...
    }

    profile.json shall be encoded in UTF-8.

  5. Start WritingTools.exe;

Context-aware Assistance

  1. Select any text in any application (or don't select any text to use quick chat mode).

  2. Press your hotkey (Default: Win+Shift+I).

  3. Choose an option from the popup menu or enter a custom instruction.

Quick Chat

Select nothing in other applications and press your hotkey will enter quick chat mode. Enter a prompt and start chatting.

Even if some text is selected, you can input a prompt starting with "/chat " or "chat :" to switch to chat mode.

βš™γ€€Customization

Fully customizable through profile.json.

LLM

Multiple LLMs can be defined and loaded simultaneously. Each is defined as an entry in chatllm:

{
   //...
   "chatllm": {
      "default": [...],
      "another_one": [...]
   },
   //...
}

default is the default LLM for actions, which can be omitted when defining actions.

Actions

Actions are represented to users as a collection of buttons. Each action is defined as a dictionary:

{
   "name": "My Action",
   "prompt": "Check this:\n\n{context}",
   "sys_prompt": "....",
   "accelerator": "p",
   "llm": "another_one",
   "action": "show"
}
  • name gives the caption of the button.

  • prompt is the prompt fed to the LLM, in which {context} represents the selected text.

  • sys_prompt is the system prompt fed to the LLM.

  • accelerator is the accelerator of the button (single char, optional).

  • llm is selected LLM to serve this action (when omitted, "default" is selected).

  • action is the post action to handle the output of LLM. Possible values:

    • show: show the output in a box.
    • prepend: prepend the output in front of current selection (see Note).
    • replace: replace the current selection by the output (default).
    • append: append the output following current selection (see Note).
    • clipboard: copy the output to the clipboard.

    Note: prepend and append might not work as expected. It depends on how the application handles keyboard inputs. They work in Notepad.

A list of such actions are defined under actions in profile.json.

Special Actions

There are two special actions, one is defined under custom in profile.json, which defines the behavior when users input some custom instruction; the other one is defined under quick-chat, which defines the behavior for quick chat mode.

action of a custom instruction can be configured on-the-fly by adding a prefix to the instruction, e.g. to select the show action:

  • "/show explain this", or
  • "show: explain this"

UI

Users can change hotkey, title and background. Note: width and height are be saved automatically when resized.

{
   "title": "My Writing Tools",
   "hotkey": "win+shift+I",
   "ui": {
      "width": 587,
      "background": {
         "color1": "ccaaaa",
         "color2": "ffffff"
      },
      "height": 422
   },
   //...
}

Some vibrant gradients:

These vibrant gradients exhibit a very sweet appearance
2c91fe, 5f21df
2aa4fe, 2497e7
f0cb79, c79f35
cc9621, 6d16be
cfcb3d, 3dc7de
b979f0, 7a2be0
edcb77, c8730d
cbc445, 6681e3
35d2fa, b6ea9c
483af3, 7010a4
cc9211, ba16e0
a1450a, c3a822
08b3d3, 23eef9
94c37e, c3b72f
5b2af0, eaac65
651ed8, 375af7
4919e3, ead0ab
f3b971, ba23ee
35b1f7, 203ffa
daf871, cea8f0
5dc3ee, da999b
820ead, b453ea
0816ac, 403eee
82b5fe, 7526ff
833d1f, c29300
ab9c38, 4abcc2
eea82d, 3adbbb
8e4b5a, 6d12f1
3ec9e4, 71d3a5
bb765b, 2c60f0
d73d96, bb661e
462a95, c25c21

Troubleshooting (Fine Tuning)

  1. Clipboard not working?

    These three delays in milliseconds specify how to simulate Ctrl+C and detect clipboard changes.

    {
       "ui": {
          ...
          "hotkey": {
             "delay1": 200, // before simulating Ctrl+C
             "delay2": 40,  // between key inputs within Ctrl+C
             "delay3": 100  // wait for clipboard changed after Ctrl+C
          },
       },
       //...
    }
  2. App can't load?

    WebView2 runtime is required, which is preinstalled onto all Windows 11 and most of Windows 10. If problems are encountered, check the document and install it. Link

Know Issues

  1. Lazarus: Ctrl+B not work when focused in Web View.

  2. Reading of current selection through clipboard is unreliable. Please re-try.

Auto Run

Add a shortcut of the WritingTools.exe to the Windows Start-Up folder.

πŸ‘¨β€πŸ’» To compile the application yourself:

Precondition: Build libchatllm or get libchatllm.dll & ggml.dll from releases;

Delphi

  1. Install Delphi Community Edition;
  2. Build this project (Target: Win64);
  3. Copy libchatllm.dll & ggml.dll to the output directory (such as Win64/Debug).

Lazarus

  1. Install Lazarus Win64;
  2. Install package WebView4Delphi to Lazarus;
  3. Build this project (LazWritingTools.lpi);
  4. Copy libchatllm.dll & ggml.dll to the output directory (such as lib/x86_64-win64).

πŸ‘β€ Acknowledgements

πŸ“„ License

Distributed under the MIT License.