pedromsfaria commited on
Commit
b56d187
1 Parent(s): 8ade672

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ from tkinter import simpledialog
7
  # Create a popup dialog to ask a question at the beginning
8
  ROOT = tk.Tk()
9
  ROOT.withdraw()
10
- user_input = simpledialog.askstring(title="Truebot AI",
11
- prompt="How can I assist you today?")
12
 
13
  #if you have OpenAI API key as a string, enable the below
14
  openai.api_key = os.environ['OPENAI_API_KEY']
 
7
  # Create a popup dialog to ask a question at the beginning
8
  ROOT = tk.Tk()
9
  ROOT.withdraw()
10
+ user_input = input("How can I assist you today? ")
11
+
12
 
13
  #if you have OpenAI API key as a string, enable the below
14
  openai.api_key = os.environ['OPENAI_API_KEY']