Miguel Martinez commited on
Commit
0bac99f
·
verified ·
1 Parent(s): f689623

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -55,6 +55,11 @@ def summarize_webpage(url: str) -> str:
55
  except Exception as e:
56
  return f"❌ Failed to summarize page: {e}"
57
 
 
 
 
 
 
58
  # Instantiate tools and model
59
  final_answer = FinalAnswerTool()
60
  search_tool = DuckDuckGoSearchTool()
 
55
  except Exception as e:
56
  return f"❌ Failed to summarize page: {e}"
57
 
58
+
59
+ # Get current date.
60
+
61
+ TODAY = datetime.datetime.now().strftime("%B %d, %Y") # e.g., "April 30, 2025"
62
+
63
  # Instantiate tools and model
64
  final_answer = FinalAnswerTool()
65
  search_tool = DuckDuckGoSearchTool()