TorchLLM's picture
Initial commit for deploying the project
d9e3edb
raw
history blame contribute delete
263 Bytes
## https://serper.dev/
from dotenv import load_dotenv
load_dotenv()
import os
os.environ["SERPER_API_KEY"] = os.getenv("SERPER_API_KEY")
from crewai_tools import SerperDevTool
# Initialize the tool for internet searching capabilities
tool = SerperDevTool()