Skip to content

Commit e5766cc

Browse files
FEAT+FIX: Greeting and minor fixes
* FEAT: Greeting feature (like in text-generation webui) * FIX: !ai and !chat prefixes removed from the user's message **Backstory of the PR:** One day... I was just sitting and scrolling through the text generation webui's API, looking for the settings that could improve the chatbot. My eyes catched the "greeting" string, and I tried to use it. I added the setting into CUSTOM_MODEL_SETTINGS and reloaded the program, after typing "!ai Hello World!" in the chat I discovered that this setting does not work, or at least not the way I think it would. Filled with sadge I decided to code a simple solution myself.
1 parent 4266d51 commit e5766cc

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

config.ini

+7-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ HARD_COMPLETION_LIMIT=300
7171
DISABLE_KEYBOARD_BINDINGS=False
7272

7373
TOS_VIOLATION = 0
74-
; Adds a custom prompt after the SOFT_COMPLETION_LIMIT message.
74+
; Adds a custom prompt after the SOFT_COMPLETION_LIMIT message. This affects !gpt3, !gpt4, !gpt4l, !cgpt commands
7575
; So it will look something like:
7676
; <prompt goes here> Answer in less than 128 chars! <custom prompt goes here>
7777
; Type: string
@@ -99,6 +99,12 @@ ENABLE_SOFT_LIMIT_FOR_CUSTOM_MODEL=True
9999
ENABLE_CUSTOM_MODEL=False
100100
CUSTOM_MODEL_COMMAND=!ai
101101
CUSTOM_MODEL_CHAT_COMMAND=!chat
102+
; Adds the first message on behalf of AI,
103+
; does the same thing as the "greeting" in text generation webui.
104+
; Should help with the way you want the AI to talk.
105+
; Example:
106+
; GREETING=Hello fellow human. *Bzzzt!* *Steam pump sounds* Don't mind it, it's my circuits working on burning money, so I can work a bit longer. So, tell me, do you want to buy hats? These precious... magnificent... works of art? I'm sure you can't withstand their beauty! I give you hats, you give me money, I live longer and give you more hats. What do you think?
107+
GREETING=
102108

103109
; 127.0.0.1:5000 or your-uri-here.trycloudflare.com
104110
CUSTOM_MODEL_HOST=127.0.0.1:5000

config.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ class Config(BaseModel):
7474
CUSTOM_MODEL_HOST: str
7575
CUSTOM_MODEL_COMMAND: str
7676
CUSTOM_MODEL_CHAT_COMMAND: str
77+
GREETING: str
7778

7879
CONFIRMABLE_QUEUE: bool
7980

modules/commands/textgen_webui.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def handle_custom_model(logline: LogLine, shared_dict: dict):
1212
main_logger.info(
1313
f"'{config.CUSTOM_MODEL_COMMAND}' command from user '{logline.username}'. "
14-
f"Message: '{logline.prompt.removeprefix(config.GPT_COMMAND).strip()}'"
14+
f"Message: '{logline.prompt.removeprefix(config.CUSTOM_MODEL_COMMAND).strip()}'"
1515
)
1616
log_gui_model_message(
1717
"CUSTOM",
@@ -23,8 +23,11 @@ def handle_custom_model(logline: LogLine, shared_dict: dict):
2323
logline.prompt, enable_soft_limit=config.ENABLE_SOFT_LIMIT_FOR_CUSTOM_MODEL
2424
)
2525

26+
message = message.replace("!ai", "")
27+
2628
response = get_custom_model_response(
2729
[
30+
{"role": "assistant", "content": config.GREETING},
2831
{"role": "user", "content": message},
2932
]
3033
)
@@ -44,6 +47,8 @@ def handle_custom_chat(logline: LogLine, shared_dict: dict):
4447
)
4548

4649
message = add_prompts_by_flags(logline.prompt)
50+
message = message.replace("!chat", "")
51+
conversation_history.append({"role": "assistant", "content": config.GREETING})
4752
conversation_history.append({"role": "user", "content": message})
4853
response = get_custom_model_response(conversation_history)
4954

0 commit comments

Comments
 (0)