Add FastMCP tool for web scrapping.

Add logging info for tools calling
This commit is contained in:
2026-07-29 16:28:15 +09:00
parent e5bb49a596
commit afb10aa52e
8 changed files with 606 additions and 73 deletions
+5 -1
View File
@@ -15,6 +15,10 @@ verbose = True #Set to True to see CrewAI process information in the console
printLogToConsole = False #Set to True to save and print log information to console, else set to False to only save log information to file
###########################################################################################
###########################################################################################
useSerpAPI = True #Set to True to use SerpAPI google engine for web search (requires an API Key). If set to False, DuckDuckGo will be used
###########################################################################################
###########################################################################################
#Define logger parameter
###########################################################################################
@@ -39,7 +43,7 @@ class AgenticAIConfig:
provider:str = "OpenAI"
model: str = "gpt-4o"
temperature: float = 0.4
max_tokens:int = 3000
max_tokens:int = 5000
# User Input
user_query:str=""