Skip to content

Commit

Permalink
Minor prompt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed Nov 21, 2024
1 parent 73cc768 commit 120894f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dailalib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.13.1"
__version__ = "3.13.2"

import os
# stop LiteLLM from querying at all to the remote server
Expand Down
2 changes: 1 addition & 1 deletion dailalib/llm_chat/llm_chat_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __init__(self, ai_api: "LiteLLMAIAPI", parent=None, context: Context = None)
self.input_text.setText(prompt)
self.send_message(add_text=False, role="system")
else:
self.input_text.setText("You are an assistant that helps understand code.")
self.input_text.setText("You are an assistant that helps understand code. Start the conversation by simply saying 'Hello, how can I help you?'.")
self.send_message(add_text=False, role="system")

def add_message(self, text, is_user):
Expand Down

0 comments on commit 120894f

Please sign in to comment.