magdap116 commited on
Commit
ce4d37a
·
verified ·
1 Parent(s): 4cf65bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,8 +16,9 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
16
  # --- Basic Agent Definition ---
17
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
18
  import os
19
- os.makedirs("cache", exist_ok=True)
20
 
 
 
21
  web_search = DuckDuckGoSearchTool()
22
 
23
 
 
16
  # --- Basic Agent Definition ---
17
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
18
  import os
 
19
 
20
+ os.makedirs("cache", exist_ok=True)
21
+ print("Made dir")
22
  web_search = DuckDuckGoSearchTool()
23
 
24