Skip to content

Commit c54f6f7

Browse files
committed
settings udpate
1 parent 32fea72 commit c54f6f7

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

AI-Tools.ahk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ PromptHandler(promptName, append := false) {
7272

7373
global isRunning := true
7474
ShowWaitTooltip()
75-
SetSystemCursor(GetSetting("settings", "cursor_wait_animation_file","wait-1.ani"))
75+
SetSystemCursor(GetSetting("settings", "cursor_wait_animation_file","wait"))
7676

7777
prompt := GetSetting(promptName, "prompt")
7878
promptEnd := GetSetting(promptName, "prompt_end")
@@ -393,8 +393,8 @@ Unescape(obj) {
393393

394394
ShowWaitTooltip() {
395395
if (isRunning) {
396-
ToolTip " Generating response..."
397-
SetTimer () => ShowWaitTooltip(), -250
396+
ToolTip "Generating response..."
397+
SetTimer () => ShowWaitTooltip(), -50
398398
} else {
399399
ToolTip()
400400
}

settings.ini.default

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ hotkey_2 = ^+k
1717
menu_hotkey = ^!+k
1818

1919
;- Misc
20-
cursor_wait_animation_file=wait-1.ani
20+
; cursor_wait_animation_file=wait-1.ani
2121

2222
;------------------------------------------------------------------------------
2323
; Popup Menu
@@ -46,13 +46,23 @@ prompt_continue
4646
;------------------------------------------------------------------------------
4747
; Prompts
4848
;---------
49-
; prompt: The main prompt to prepend before to the user input
50-
; menu_text: The text to be displayed in the popup menu
51-
; mode: The mode to be used for the prompt - see modes section
52-
; prompt_system: The system prompt send of system input for chat completion mode
53-
; prompt_end: Text to append to the end of user input
54-
; append: If true, the response will be appended to the user input
55-
; ~mode overrides~: Any mode setting can be overriden for a specific prompt
49+
; prompt : (Required) The main prompt to prepend before to
50+
; the user input
51+
; mode : (Required) The mode to be used for the prompt
52+
; - see modes section
53+
; menu_text : (Optional) The text to be displayed in the popup menu
54+
; prompt_system : (Optional) The system prompt send of system input
55+
; for chat completion mode
56+
; prompt_end : (Optional) Text to append to the end of user input
57+
; replace_selected : (Optional:True/False:Defult True) If true, the response
58+
; will be appended to the user input
59+
; response_seperator : (Optional:Default "") The text to append between
60+
; the user input and the response
61+
; ~mode overrides~ : (Optional) Any mode setting can be overriden for a
62+
; specific prompt
63+
; --
64+
; Note: String values must be enclosed in double quotes and can use \n for
65+
; new lines
5666
;------------------------------------------------------------------------------
5767
[prompt_writting]
5868
prompt="Improve the writting for clarity and conciseness and correct the spelling (American English) and grammar of the following:\n\n"

0 commit comments

Comments
 (0)