abdfajar707 commited on
Commit
3ca89c4
Β·
verified Β·
1 Parent(s): 77a1237

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -37,6 +37,12 @@ class StreamlitResponse(ResponseParser):
37
  # Tampilkan judul aplikasi
38
  st.write("# Chat with Tabular Dataframe πŸ¦™")
39
 
 
 
 
 
 
 
40
  # Menentukan direktori asal
41
  root_dir = "./data"
42
 
 
37
  # Tampilkan judul aplikasi
38
  st.write("# Chat with Tabular Dataframe πŸ¦™")
39
 
40
+ try:
41
+ from typing_extensions import TypedDict # βœ… Correct for Python <3.12
42
+ except ImportError:
43
+ from typing import TypedDict # βœ… Works for Python 3.12+
44
+
45
+
46
  # Menentukan direktori asal
47
  root_dir = "./data"
48