awacke1 commited on
Commit
95f0e5a
1 Parent(s): 94c6cf0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -73,7 +73,9 @@ def get_download_link(file_path):
73
  def generate_unique_id():
74
  timestamp = datetime.utcnow().strftime('%Y%m%d%H%M%S%f')
75
  unique_uuid = str(uuid.uuid4())
76
- return f"{timestamp}-{unique_uuid}"
 
 
77
 
78
  # 📝 Generate a filename - Naming files like a pro (or a very confused librarian)
79
  def generate_filename(prompt, file_type):
 
73
  def generate_unique_id():
74
  timestamp = datetime.utcnow().strftime('%Y%m%d%H%M%S%f')
75
  unique_uuid = str(uuid.uuid4())
76
+ returnValue = f"{timestamp}-{unique_uuid}"
77
+ st.write('New Unique ID:' + returnValue)
78
+ return
79
 
80
  # 📝 Generate a filename - Naming files like a pro (or a very confused librarian)
81
  def generate_filename(prompt, file_type):