From e7dbc443aa473966b10f0a78a7486d80138cff14 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Sun, 19 May 2024 23:05:34 +0200 Subject: [PATCH] improved placeholder text and updated text --- scripts/GUIChat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/GUIChat.py b/scripts/GUIChat.py index d3fc42b..566022c 100644 --- a/scripts/GUIChat.py +++ b/scripts/GUIChat.py @@ -84,7 +84,7 @@ class ChatGUI(CTk.CTk): self.grid_rowconfigure(1, weight=1) # File Loader Entry - self.file_entry = CTk.CTkEntry(self, placeholder_text="Enter Filepath or press Load File... (Only .md, pdf, csv, html, and json files are supported)") + self.file_entry = CTk.CTkEntry(self, placeholder_text="Enter Filepath or press Load File to provide extra context... (check README for more details)") self.file_entry.grid(row=0, column=0, sticky="ew", padx=10, pady=(10, 0), columnspan=2) # Load File Button load_file_btn = CTk.CTkButton(self, text="Load File", command=self.select_file)