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)