Linh Vuu commited on
Commit
30899c9
1 Parent(s): 4198754

add run-out-energy message

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. app.py +4 -0
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
app.py CHANGED
@@ -10,6 +10,10 @@ llm = OpenAI(api_token = openai_api_key)
10
 
11
  st.title("Data analysis with PandasAI")
12
 
 
 
 
 
13
  uploaded_file = st.file_uploader("Upload a CSV file for analysis", type=['csv'])
14
 
15
  if uploaded_file is not None:
 
10
 
11
  st.title("Data analysis with PandasAI")
12
 
13
+ # Note that API key's running out of budget
14
+ contact_url = "https://www.linkedin.com/in/linhvuu"
15
+ st.write("I am running out of energy. Please contact [my assistant](%s) to wake me up." % contact_url)
16
+
17
  uploaded_file = st.file_uploader("Upload a CSV file for analysis", type=['csv'])
18
 
19
  if uploaded_file is not None: