bstraehle commited on
Commit
44b8c58
·
verified ·
1 Parent(s): 6dda30d

Update crew.py

Browse files
Files changed (1) hide show
  1. crew.py +3 -0
crew.py CHANGED
@@ -310,6 +310,9 @@ def code_generation_tool(question: str, json_data: str) -> str:
310
  except Exception as e:
311
  raise RuntimeError(f"Processing failed: {str(e)}")
312
 
 
 
 
313
  @CrewBase
314
  class GAIACrew():
315
  agents: List[BaseAgent]
 
310
  except Exception as e:
311
  raise RuntimeError(f"Processing failed: {str(e)}")
312
 
313
+ web_search_tool = web_search_tool()
314
+ document_analysis_tool = document_analysis_tool()
315
+
316
  @CrewBase
317
  class GAIACrew():
318
  agents: List[BaseAgent]