improved placeholder text and updated text

This commit is contained in:
Falko Victor Habel 2024-05-19 23:05:34 +02:00
parent 9a627df31b
commit e7dbc443aa
1 changed files with 1 additions and 1 deletions

View File

@ -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)