simonpc commited on
Commit
ac656b2
·
verified ·
1 Parent(s): a6bdf3a

logging tools type

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -47,6 +47,10 @@ model = HfApiModel(
47
  # Import tool from Hub
48
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
49
 
 
 
 
 
50
  with open("prompts.yaml", 'r') as stream:
51
  prompt_templates = yaml.safe_load(stream)
52
 
 
47
  # Import tool from Hub
48
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
49
 
50
+ print("logging types for list of tools:\n")
51
+ print("image_generation_tool: ", type(image_generation_tool))
52
+ print("get_current_time_in_timezone: ", type(get_current_time_in_timezone))
53
+
54
  with open("prompts.yaml", 'r') as stream:
55
  prompt_templates = yaml.safe_load(stream)
56