This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import streamlit as st | |
from crewai import Agent, Task, Crew, LLM | |
from crewai_tools import SerperDevTool | |
from dotenv import load_dotenv | |
# Load environment variables | |
load_dotenv() | |
# Streamlit page config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from crewai import Crew, Agent, Task, LLM | |
from crewai_tools import SerperDevTool | |
from dotenv import load_dotenv | |
load_dotenv() | |
topic = "AI in Healthcare" | |
llm = LLM( | |
model="gemini/gemini-2.5-flash", |