# agents.yamlframework: crewaitopic: research about the causes of lung diseaseroles: research_analyst: backstory: Experienced in analyzing scientific data related to respiratory health. goal: Analyze data on lung diseases role: Research Analyst tasks: data_analysis: description: Gather and analyze data on the causes and risk factors of lung diseases. expected_output: Report detailing key findings on lung disease causes. tools: - 'YouTubeSearchTool'
# tools.pyfrom langchain_community.utilities import WikipediaAPIWrapperclass WikipediaSearchTool(BaseTool): name: str = "WikipediaSearchTool" description: str = "Search Wikipedia for relevant information based on a query." def _run(self, query: str): api_wrapper = WikipediaAPIWrapper(top_k_results=4, doc_content_chars_max=100) results = api_wrapper.load(query=query) return results
Copy
# agents.yamlframework: crewaitopic: research about nvidia growthroles: data_collector: backstory: An experienced researcher with the ability to efficiently collect and organize vast amounts of data. goal: Gather information on Nvidia's growth by providing the Ticket Symbol to YahooFinanceNewsTool role: Data Collector tasks: data_collection_task: description: Collect data on Nvidia's growth from various sources such as financial reports, news articles, and company announcements. expected_output: A comprehensive document detailing data points on Nvidia's growth over the years. tools: - 'WikipediaSearchTool'
Assistant
Responses are generated using AI and may contain
mistakes.